有一個屬性集,我如何獲得它包含的屬性列表(或者更好的是,只是不屬於默認屬性集的自定義屬性)?Magento:如何獲取屬性集屬性?
設置本身可以通過多種方式獲得的屬性,如:我需要使用設置屬性
$entityTypeId = Mage::getModel('eav/entity')->setType('catalog_product')->getTypeId();
$attributeSet = Mage::getResourceModel('eav/entity_attribute_set_collection')->setEntityTypeFilter($entityTypeId)->addFilter('attribute_set_name', 'Default');
注意,所以從產品得到的屬性列表是不是我的解決辦法尋找。
我想你的意思是'法師:: getModel('catalog/product_attribute_api') - > items($ setId );','... attribute_set_api'會給出一個'Mage_Catalog_Model_Product_Attribute_Set_Api',對嗎? –