$_item-> getProduct() – > load()将重新加载数据库中的所有产品数据.虽然这将工作,但请记住,每次调用load()Magento将执行数据库查询.
原文链接:https://www.f2er.com/php/138238.html通过将属性与引用项一起加载,可以实现更好的性能.只需创建一个自定义模块并将其添加到config.xml中
<global> <sales> <quote> <item> <product_attributes> <one_custom_attribute_code /> <another_custom_attribute_code /> </product_attributes> </item> </quote> </sales> </global>
$_item->getProduct()->getAnotherCustomAttributeCode();
这里有一篇关于这个的文章:https://www.atwix.com/magento/accessing-custom-attribute-at-checkout-or-cart/