1

我正在尝试从 Magento 中的自定义类别属性中获取值。该属性是一个选择字段,由以下安装脚本创建:

$this->startSetup();

$this->addAttribute('catalog_category', 'category_categorycolor', array(
    'group'         => 'General Information',
    'input'         => 'select',
    'type'          => 'varchar',
    'label'         => 'Categorie kleur',
    'backend'       => '',
    'visible'       => 1,
    'required'      => 0,
    'user_defined'  => 1,
    'option'            => array (
                                    'value' => array('yellow' => array('Geel'),
                                                     'purple' => array('Paars'),
                                                     'blue' => array('Blauw'),
                                                     'red' => array('Rood'),
                                                     'orange' => array('Oranje'),
                                                     'green' => array('Groen'),
                                                     'darkblue' => array('Donkerblauw'),
                                                     'lightgreen' => array('Lichtgroen'),                                               
                                                )
                                ),
    'global'        => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
));

$this->endSetup();

不幸的是,只得到数字而不是文本值。我使用这一行来检索值:

<?php $_category_categorycolor = $_category->getData('category_categorycolor'); if($_category_categorycolor): ?> <?php echo $_category_categorycolor; ?> <?php endif; ?>

有人能帮我吗?

4

3 回答 3

4

像这样的东西:

$category_id = '10';
$attribute_code = 'category_categorycolor';
$category = Mage::getModel('catalog/category')->load($category_id);

echo $category->getResource()->getAttribute($attribute_code)->getFrontend()->getValue($category);
于 2013-01-10T14:21:33.907 回答
3

解决方案非常混乱(我知道的唯一一个)。

$opt = array(); // will contain all options in a $key => $value manner
$attribute = Mage::getSingleton('eav/config')->getAttribute('catalog_category', 'category_categorycolor');
    if ($attribute->usesSource()) {
        $options = $attribute->getSource()->getAllOptions(false);
        foreach ($options as $o) {
            $opt[$o['value']] = $o['label'];
        }
    }

$categoryColorId = $_category->getData('category_categorycolor');
$categoryColorLabel = $opt[$categoryColorId];

// if you have problems, do a Zend_Debug::dump($opt); 
// - it should contain an array of all the options you added

没测试过,看看有没有用。

PS:无法回复您的评论,不知道为什么。$opt 包含什么?

于 2013-01-10T14:15:27.730 回答
0

您返回的数字是下拉列表中每个值的 id。您也必须加载下拉值。

请参阅以下页面。它帮助我理解了这一点。

http://www.sharpdotinc.com/mdost/2009/04/06/magento-getting-product-attributes-values-and-labels/

于 2013-01-10T14:23:10.350 回答