如何以编程方式更新属性前端标签?

时间:2017-11-29 14:11:48

标签: magento2

如何以编程方式更新属性前端标签?

 $attributeModel = \Magento\Framework\App\ObjectManager::getInstance()
        ->get(\Magento\Eav\Model\Attribute::class)->load($id);

 ...

1 个答案:

答案 0 :(得分:1)

我找到了解决方案:

$attributeModel = \Magento\Framework\App\ObjectManager::getInstance()
    ->get(\Magento\Eav\Model\Attribute::class)
    ->load($id);
  $storeLabels = $attributeModel->getStoreLabels();
  $storeLabels[$storeId] = $labelTitle;
  $attributeModel->setStoreLabels($storeLabels);

  \Magento\Framework\App\ObjectManager::getInstance()
     ->get($attributeModel->getResourceName())
     ->save($attributeModel);