我在magento 1.9上创建了一个新属性,并调用了category_grouped。现在我试图通过使用getAttributeRawValue在目录页面上获取它的值,但我得到的只是一个ID。我怎么能得到值名而不是ID?以下是我的代码。感谢
<?php $attributeId = Mage::getResourceModel('catalog/product')-
>getAttributeRawValue($_product->getID(), 'category_grouped', $storeId);?>
答案 0 :(得分:0)
getAttributeText获取给定属性的值/名称,而getAttributeText在这种情况下返回ID。
$attributeValue = Mage::getModel('catalog/product')
->load($_product->getID())
->getAttributeText('category_grouped');
答案 1 :(得分:-1)
您可以使用以下代码
设置属性值$product->CategoryGrouped();
由于