Magento如何通过给定的属性标签或给定的属性ID 查找属性值?
我相信这可以通过[在这里](magento.stackexchange.com/a/8396)
—
sbditto85
Magento如何通过给定的属性标签或给定的属性ID 查找属性值?
Answers:
$productModel = Mage::getModel('catalog/product');
$str_attr_label = "color"; //or "size", etc...
$int_attr_id = 8; // or any given id.
$int_attr_value = 21; // or any given attribute value id.
// Chose either
if ($byLabel){
$attr = $productModel->getResource()->getAttribute($str_attr_label);
}
if ($byId){
$attr = Mage::getModel('catalog/resource_eav_attribute')->load($int_attr_id);
}
if ($attr->usesSource()) {
echo $color_label = $attr->getSource()->getOptionText($int_attr_value);
}
简而言之-使用getAttributeText方法。
$product->getAttributeText('brand')
如果有人找到此页面并想要一些低端的方法来查找任何种类的属性,而不仅仅是产品属性,下面是一个示例,它查找我创建的一个随机属性,该属性称为“ specialty”,并将所有选项列出为数组。
$attr = Mage::getResourceModel('eav/entity_attribute_collection')->setCodeFilter('specialty')->getData()[0];
$attributeModel = Mage::getModel('eav/entity_attribute')->load($attr['attribute_id']);
$src = $attributeModel->getSource()->getAllOptions();