如果我知道产品ID而没有加载整个产品,如何获得特定的产品属性值?
答案 0 :(得分:140)
Mage::getResourceModel('catalog/product')->getAttributeRawValue($productId, 'attribute_code', $storeId);
答案 1 :(得分:38)
我所知道的一种方式:
$product->getResource()->getAttribute($attribute_code)
->getFrontend()->getValue($product)
答案 2 :(得分:26)
你可以使用
<?php echo $product->getAttributeText('attr_id') ?>
答案 3 :(得分:8)
如果不加载产品型号,似乎无法获得价值。如果你看看文件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行)。
答案 4 :(得分:8)
请参阅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;
}
答案 5 :(得分:5)
首先,我们必须确保加载所需的属性,然后输出它。使用此:
$product = Mage::getModel('catalog/product')->load('<product_id>', array('<attribute_code>'));
$attributeValue = $product->getResource()->getAttribute('<attribute_code>')->getFrontend()->getValue($product);
答案 6 :(得分:3)
试试这个
$attribute = $_product->getResource()->getAttribute('custom_attribute_code');
if ($attribute)
{
echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
}
答案 7 :(得分:1)
您无需加载整个产品。 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
)
答案 8 :(得分:1)
这个有效 -
echo $_product->getData('ATTRIBUTE_NAME_HERE');
答案 9 :(得分:0)
您可以按照以下方式获取属性值
$model = Mage::getResourceModel('catalog/product');
$attribute_value = $model->getAttributeRawValue($productId, 'attribute_code', $storeId);
答案 10 :(得分:-1)
$orderId = 1; // YOUR ORDER ID
$items = $block->getOrderItems($orderId);
foreach ($items as $item) {
$options = $item->getProductOptions();
if (isset($options['options']) && !empty($options['options'])) {
foreach ($options['options'] as $option) {
echo 'Title: ' . $option['label'] . '<br />';
echo 'ID: ' . $option['option_id'] . '<br />';
echo 'Type: ' . $option['option_type'] . '<br />';
echo 'Value: ' . $option['option_value'] . '<br />' . '<br />';
}
}
}
&#13;
您将用于在Magento 2中检索超值产品自定义选项购物车订单的所有内容:https://www.mageplaza.com/how-get-value-product-custom-option-cart-order-magento-2.html
答案 11 :(得分:-2)
你可以编写一个方法,直接通过我想的sql来做。
看起来像这样:
变量:
$store_id = 1;
$product_id = 1234;
$attribute_code = 'manufacturer';
查询:
SELECT value FROM eav_attribute_option_value WHERE option_id IN (
SELECT option_id FROM eav_attribute_option WHERE FIND_IN_SET(
option_id,
(SELECT value FROM catalog_product_entity_varchar WHERE
entity_id = '$product_id' AND
attribute_id = (SELECT attribute_id FROM eav_attribute WHERE
attribute_code='$attribute_code')
)
) > 0) AND
store_id='$store_id';
您必须根据属性的backend_type(eav_attribute中的字段)从正确的表中获取值,但这样至少需要1个额外的查询。
答案 12 :(得分:-2)
如果你有一个名为my_attr的text / textarea属性,你可以通过以下方式得到它:
product->getMyAttr();