我使用此代码来获取产品对象,以便稍后使用。 但是如何从该对象获取特定属性? 我的意思是,如果我可以使用$ product-> getSku()获得产品sku, ,如何获得该产品具有的自定义文本属性,例如“ additional_description”
$productId = (int) $this->getRequest()->getParam('id');
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); // instance of object manager
$product = $objectManager->create('\Magento\Catalog\Model\Product')->load($productId);
echo $product->getSku(); //this is the product sku