我想从属性集中获取属性名称列表。我知道如何获取属性ID,但我无法弄清楚如何获取名称列表。到目前为止,这是我的代码。
<?php
$entityTypeId = Mage::getModel('eav/entity')->setType('catalog_product')->getTypeId();
$attributeSetName = 'Brands';
$attributeSetId = Mage::getModel('eav/entity_attribute_set')
->getCollection()
->setEntityTypeFilter($entityTypeId)
->addFieldToFilter('attribute_set_name', $attributeSetName)
->getFirstItem()
->getAttributeSetId();
$attributes = Mage::getModel('catalog/product_attribute_api')->items($attributeSetId);
foreach($attributes as $_attribute){
var_dump($_attribute);
}
?>
答案 0 :(得分:1)
我自己做了一些测试,现在似乎已经完成了,
foreach($attributes as $_attribute){
$attributeInfo = Mage::getResourceModel('eav/entity_attribute_collection')
->setCodeFilter($_attribute['code'])
->getFirstItem()->getFrontendLabel();
echo "<pre>";
echo $attributeInfo;
}