0

我想从属性集中获取属性名称列表。我知道如何获取属性 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);
    }
?>
4

1 回答 1

1

自己做了一些测试,现在似乎已经做到了,

     foreach($attributes as $_attribute){

        $attributeInfo = Mage::getResourceModel('eav/entity_attribute_collection')
            ->setCodeFilter($_attribute['code'])
            ->getFirstItem()->getFrontendLabel();

              echo "<pre>";
              echo $attributeInfo;
       }
于 2012-10-04T10:19:53.750 回答