Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一名开发人员,遇到了一个有趣的问题,我正在尝试检索添加到购物车中的简单产品的库存数据。简单产品是从可配置产品的产品页面添加的。当我查看 $observer->getEvent()->getProduct() 的属性时,似乎产品数据是可配置产品的数据,而不是简单产品的数据,这对我来说毫无意义。有什么建议么?
这正是我脑海中闪过的想法,但可能还有更优雅的方式:
$productId = $configurableProduct->getOptionByCode('simple_product')->getProductId(); $simple = Mage::getModel('catalog/product')->load($productId);