服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

magento2根据属性id或code来添加options

时间:2017-03-10 10:40来源:未知 作者:最模板 点击:
magento2根据属性id或code来添加options, 1、根据获取attribute_code来获取attribute id $attr = $this-_objectManager-create(Magento\Eav\Model\ResourceModel\Entity\Attribute);$attributeId = $attr-getIdByCode(catalog_product, brand)
magento2根据属性id或code来添加options,

1、根据获取attribute_code来获取attribute id
$attr = $this->_objectManager->create('Magento\Eav\Model\ResourceModel\Entity\Attribute');
$attributeId = $attr->getIdByCode('catalog_product', 'brand');  

注释:catalog_product代表属性实体类型,brand代表属性code

2、实例化eav Model类型

$eav = $this->_objectManager->create('Magento\Eav\Setup\EavSetup');

3、构建option数组

$options=array('option1','option2','option3',.....);
for($i=0;$i<count($options);$i++){
   $option['order']['option'.$i] =$i;/*option的sort_order*/
   $option['value']['option'.$i][0] = $options[$i];/*option后台显示lable*/
   $option['value']['option'.$i][1] = $options[$i];/*option前台显示lable*/
}

4、添加option

$eav->addAttributeOption($option);

5、应该就ok了!

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------