รับค่าตัวเลือกโดย Id of Attribute ใน Magento


12

Magento จะค้นหาค่าของแอตทริบิวต์ด้วยป้ายกำกับของแอตทริบิวต์ที่กำหนดหรือรหัสแอตทริบิวต์ที่กำหนดได้อย่างไร


ฉันเชื่อว่านี่เป็นคำตอบของคำถาม SO อื่นที่เห็น [ที่นี่] ( magento.stackexchange.com/a/8396 )
sbditto85

คำตอบ:


16
$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);
}       


2

ในกรณีที่ทุกคนค้นพบหน้านี้และต้องการวิธีลดระดับต่ำในการค้นหาแอททริบิวต์ทุกชนิดแทนที่จะเป็นเพียงแค่คุณสมบัติของผลิตภัณฑ์นี่คือตัวอย่างของการค้นหาแอททริบิวแบบสุ่มที่ฉันสร้างขึ้นซึ่งเรียกว่า อาร์เรย์

$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();
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.