【发布时间】:2017-05-23 07:48:08
【问题描述】:
我想通过他们的代码创建产品,并且我想将产品添加到类别中。
如何通过代码将产品添加到类别中?
我尝试将类别添加到产品 \Magento\Catalog\Model\Product,但没有方法 setCategory 或类似的方法。
然后我尝试将产品添加到类别Magento\Catalog\Model\Category,并且没有方法 addProduct 或类似的方法。
我看到了函数
CategoryLinkManagementInterface -> assignProductToCategories(
$product->getSku(),
$product->getCategoryIds() //but there is not categories yet
)
【问题讨论】:
标签: categories magento2