답변:
마 젠토 1과 동일하게 할 수 있습니다.
자세한 내용은 방문, 구성 가능한 제품의 옵션 ID 및 레이블 가져 오기 를 참조하십시오.
// 제품 객체에서 옵션 ID를 기반으로 옵션 레이블 가져 오기
$optionId = 10;
$attr = $_product->getResource()->getAttribute('color');
if ($attr->usesSource()) {
$optionText = $attr->getSource()->getOptionText($optionId);
}
//get option text ex. Red
// 옵션 레이블을 기반으로 옵션 ID를 얻습니다.
$attr = $_product->getResource()->getAttribute('color');
if ($attr->usesSource()) {
$option_id = $attr->getSource()->getOptionId("Red");
}
//get option id ex. 10
magento의 모범 사례는 xml을 통해 수행하는 것입니다.
예를 들어 brand
다음과 같은 표준 속성을 얻으려면 다음과 같이하십시오 catalog_product_view.xml
.
<referenceBlock name="product.info.main">
<block class="Magento\Catalog\Block\Product\View\Description" name="product.info.brand" template="product/view/attribute.phtml" before="-">
<arguments>
<argument name="at_call" xsi:type="string">getBrand</argument>
<argument name="at_code" xsi:type="string">brand</argument>
<argument name="css_class" xsi:type="string">brand</argument>
<argument name="at_label" xsi:type="string">none</argument>
<argument name="add_attribute" xsi:type="string">itemprop="brand"</argument>
</arguments>
</block>
</referenceBlock>
입력 속성 또는 텍스트 영역의 값을 가져옵니다. 드롭 다운이있는 경우 텍스트 유형을 사용해야하므로 인수 목록에이 행을 추가하십시오.
<argument name="at_type" xsi:type="string">text</argument>
속성을 얻기 위해 파일을 만들거나 PHP 코드를 작성할 필요가 없습니다. 이런 식으로 일관성을 유지하고 모든 속성에 대해 동일한 attribute.phtml 파일을 사용합니다. 무언가가 바뀌면 한곳에서만 바꾸어야합니다.
공장 방법 사용
protected $_attributeLoading;
public function __construct(
.....
\Magento\Catalog\Model\ResourceModel\ProductFactory $attributeLoading,
....
) {
parent::__construct($context);
....
$this->_attributeLoading = $attributeLoading;
....
}
public function getAttributeOptionId($attribute,$label)
{
$poductReource=$this->_attributeLoading->create();
$attr = $poductReource->getAttribute($attribute);
if ($attr->usesSource()) {
return $option_id = $attr->getSource()->getOptionId($label);
}
}
public function getAttributeOptionText($attribute,$label)
{
$poductReource=$this->_attributeLoading->create();
$attr = $poductReource->getAttribute($attribute);
if ($attr->usesSource()) {
return $option_Text = $attr->getSource()->getOptionText($label);
}
}
phtml 파일에서
$this->getAttributeOptionId('color','//optionLabel');
$this->getAttributeOptionText('color','//optionId');
$product->getResource()
v2.2.2 이상에서 더 이상 사용되지 않는 DocBlock 메모가 있으므로이를 사용하여 코드를 작성하는 것을 주저했습니다. 이미이 페이지에있는 솔루션에서 영감을 얻은이 솔루션을 생각해 냈습니다.
$optionId = $product->getDataByKey('attribute_code');
$optionText = null;
$attributes = $product->getAttributes();
if ($optionId && array_key_exists('attribute_code', $attributes)) {
$attr = $attributes['attribute_code'];
if ($attr->usesSource()) {
$optionText = $attr->getSource()->getOptionText($optionId);
}
}
if ($optionText) {
//do something with $optionText
}
참고로 이것은 AbstractModel.php의 메소드입니다.
/**
* Retrieve model resource
*
* @return \Magento\Framework\Model\ResourceModel\Db\AbstractDb
* @deprecated 101.0.0 because resource models should be used directly
*/
public function getResource()
{
return $this->_getResource();
}
getResource()
이 모델에서는 방법을 찾을 수 없습니다 : github.com/magento/magento2/blob/2.3-develop/app/code/Magento/…
getResource()
이전에 존재했던 방법이었습니다. 내가 언급 한 v2.2.2에서는 이미 사용 중단 예정입니다. 2.3 개발 브랜치에서 나는 그것이 완료되었다고 생각합니다. 따라서 그 기능을 필요로하지 않는 나의 예.
모두가 여기에 온다.
제품 엔터티가없는 경우이 단계를 통해 옵션 값을 검색 할 수 있습니다.
\Magento\Eav\Api\AttributeRepositoryInterface
수업에 주입
public function __construct(
...
\Magento\Eav\Api\AttributeRepositoryInterface $attributeRepository,
...
) {
...
$this->attributeRepository = $attributeRepository;
...
}
저장소를 사용하여 속성 인스턴스 가져 오기
// 4 is the default entity_type_id for product
$attribute = $this->attributeRepository->get('4', '[attribute_code]');
$attribute
옵션 값에서 옵션 ID를 가져 오는 데 사용
$optionId = $attribute->getSource()->getOptionId('[option_value]');
속성 레이블을 얻는 데 사용할 수 있습니다
$product->getResource()->getAttribute($key)->getFrontend()->getLabel($product);
객체 관리자를 사용할 수 있습니다 :
$pid = 1;
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$pdata = $objectManager->create('Magento\Catalog\Model\Product')->load($pid);
$getlable = $pdata->getResource()->getAttribute($key)->getFrontend()->getLabel($pdata);
이 코드를 시도하십시오
1 단계) 먼저 제품을로드해야합니다
$_productCollection = $block->getLoadedProductCollection();
2 단계) 제품 목록 페이지에서 다음과 같은 제품을 나열하기위한 foreach 루프가 있습니다.
foreach ($_productCollection as $_product)
3) 코드는이 루프 안에 있습니다. 속성 레이블을 표시하려는 위치에 아래 코드를 배치하십시오.
$_product->getResource()->getAttribute('your_attribute_code')->getFrontend()->getValue($_product);
your_attribute_code 를 속성 이름으로 바꾸 십시오 .