web-dev-qa-db-ja.com

Magento製品属性値の取得

製品全体をロードせずに製品IDを知っている場合、特定の製品属性値を取得する方法は?

82
Denis Óbukhov
Mage::getResourceModel('catalog/product')->getAttributeRawValue($productId, 'attribute_code', $storeId);
140
Daniel Kocherga

私が知っている方法:

$product->getResource()->getAttribute($attribute_code)
        ->getFrontend()->getValue($product)
38
Lucas Moeskops

使用できます

<?php echo $product->getAttributeText('attr_id')  ?> 
26
Vishal

Daniel Kochergaの answerを参照してください。ほとんどの場合、これでうまくいきます。

属性の値を取得するそのメソッドに加えて、selectまたはmultiselectのラベルを取得したい場合があります。その場合、ヘルパークラスに格納するこのメソッドを作成しました。

/**
 * @param int $entityId
 * @param int|string|array $attribute atrribute's ids or codes
 * @param null|int|Mage_Core_Model_Store $store
 *
 * @return bool|null|string
 * @throws Mage_Core_Exception
 */
public function getAttributeRawLabel($entityId, $attribute, $store=null) {
    if (!$store) {
        $store = Mage::app()->getStore();
    }

    $value = (string)Mage::getResourceModel('catalog/product')->getAttributeRawValue($entityId, $attribute, $store);
    if (!empty($value)) {
        return Mage::getModel('catalog/product')->getResource()->getAttribute($attribute)->getSource()->getOptionText($value);
    }

    return null;
}
9
Tyler V.

製品モデルをロードせずに価値を得るのは不可能のようです。ファイルapp/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.phpを見ると、メソッドが表示されます。

public function getValue(Varien_Object $object)
{
    $value = $object->getData($this->getAttribute()->getAttributeCode());
    if (in_array($this->getConfigField('input'), array('select','boolean'))) {
        $valueOption = $this->getOption($value);
        if (!$valueOption) {
            $opt = new Mage_Eav_Model_Entity_Attribute_Source_Boolean();
            if ($options = $opt->getAllOptions()) {
                foreach ($options as $option) {
                    if ($option['value'] == $value) {
                        $valueOption = $option['label'];
                    }
                }
            }
        }
        $value = $valueOption;
    }
    elseif ($this->getConfigField('input')=='multiselect') {
        $value = $this->getOption($value);
        if (is_array($value)) {
            $value = implode(', ', $value);
        }
    }
    return $value;
}

ご覧のとおり、このメソッドは、そこからデータを取得するためにロードされたオブジェクトを必要とします(3行目)。

8
azakolyukin

まず、目的の属性がロードされていることを確認してから、出力する必要があります。これを使って:

$product = Mage::getModel('catalog/product')->load('<product_id>', array('<attribute_code>'));
$attributeValue = $product->getResource()->getAttribute('<attribute_code>')->getFrontend()->getValue($product);
5
Sveta Oksen

これを試して

 $attribute = $_product->getResource()->getAttribute('custom_attribute_code');
    if ($attribute)
    {
        echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
    }
3
Keshav Kalra

製品全体をロードする必要はありません。 Magentosコレクションは非常に強力でスマートです。

$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToFilter('entity_id', $product->getId());
$collection->addAttributeToSelect('manufacturer');
$product = $collection->getFirstItem();
$manufacturer = $product->getAttributeText('manufacturer');

GetFirstItem()を呼び出すと、クエリが実行され、結果の製品は非常に最小限になります。

[status] => 1
[entity_id] => 38901
[type_id] => configurable
[attribute_set_id] => 9
[manufacturer] => 492
[manufacturer_value] => JETTE
[is_salable] => 1
[stock_item (Varien_Object)] => Array
    (
        [is_in_stock] => 1
    )
1
Eydamos

これは動作します

echo $_product->getData('ATTRIBUTE_NAME_HERE');
1
th3pirat3

次の方法で属性値を取得できます

$model = Mage::getResourceModel('catalog/product');
$attribute_value = $model->getAttributeRawValue($productId, 'attribute_code', $storeId);
0
Magecode