Magento 2将多选下拉列表插入数据库

时间:2019-05-27 12:49:15

标签: magento magento2

我想在管理面板(自定义扩展名)中创建国家的多选下拉菜单。这样我就可以在数据库中插入属性值。

我添加了类似这样的字段。

$optionsCountry = $this->_countryFactory->toOptionArray();
$country = $fieldset->addField(
    'country_id',
    'multiselect',
    [
        'name' => 'country_id[]',
        'label' => __('Country'),
        'title' => __('Country'),
        'values' => $optionsCountry,
    ]
);

无法将多个国家/地区插入数据库。

任何人都可以帮助我。

0 个答案:

没有答案