Magento 제품 속성 값 가져 오기 전체 제품을로드하지 않고 제품 ID를 알고있는 경우 특정 제품 속성 값을 얻는 방법은 무엇입니까? Mage::getResourceModel('catalog/product')->getAttributeRawValue($productId, 'attribute_code', $storeId); 내가 아는 방법 : $product->getResource()->getAttribute($attribute_code) ->getFrontend()->getValue($product) 당신이 사용할 수있는 대부분의 경우에 효과가 있으므로 Daniel Kocherga의 답변을 참조하십시오 . 속성의 값을 가져 오는 방법 외에도 때때로 select또는 레이블을 가져오고 싶을 수 있습니다 m..