전체 제품을로드하지 않고 제품 ID를 알고있는 경우 특정 제품 속성 값을 얻는 방법은 무엇입니까?
답변:
내가 아는 방법 :
$product->getResource()->getAttribute($attribute_code)
->getFrontend()->getValue($product)
$product
두 번 사용합니까?
당신이 사용할 수있는
<?php echo $product->getAttributeText('attr_id') ?>
$product->getData('my_name')
대부분의 경우에 효과가 있으므로 Daniel Kocherga의 답변을 참조하십시오 .
속성의 값을 가져 오는 방법 외에도 때때로 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;
}
제품 모델을로드하지 않고는 가치를 얻을 수없는 것 같습니다. 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;
}
보시다시피이 메서드는 데이터를 가져 오기 위해로드 된 개체가 필요합니다 (세 번째 줄).
전체 제품을로드 할 필요가 없습니다. 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
)
이것은 작동합니다.
echo $_product->getData('ATTRIBUTE_NAME_HERE');
$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 />';
}
}
}
Magento 2에서 가치있는 제품 맞춤 옵션 장바구니 주문을 검색하는 데 사용할 모든 것 : https://www.mageplaza.com/how-get-value-product-custom-option-cart-order-magento-2.html
내가 생각하는 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 개의 추가 쿼리가 필요합니다.
my_attr이라는 text / textarea 속성이있는 경우 다음을 통해 얻을 수 있습니다.
product->getMyAttr();