Magento 2 - Как получить значение параметров атрибута объекта EAV?


18

Как я могу получить значения параметров атрибута объекта eav?
Я нашел решение только для magento 1.x, но M2 я не знаю.
M1:

$attr = Mage::getResourceModel('eav/entity_attribute_collection')->setCodeFilter('specialty')->getData()[0];
$attributeModel = Mage::getModel('eav/entity_attribute')->load($attr['attribute_id']);
$src =  $attributeModel->getSource()->getAllOptions();

Кто-нибудь знает, покажи мне шаг за шагом, пожалуйста! Спасибо!

Ответы:


55

Вы можете добавить в конструктор вашего класса экземпляр \Magento\Eav\Model\Configвроде этого:

protected $eavConfig;
public function __construct(
    ...
    \Magento\Eav\Model\Config $eavConfig,
    ...
){
    ...
    $this->eavConfig = $eavConfig;
    ...
}

тогда вы можете использовать это в своем классе

$attribute = $this->eavConfig->getAttribute('catalog_product', 'attribute_code_here');
$options = $attribute->getSource()->getAllOptions();

Как получить «значение» и «ярлык»?
MrTo-Kane

1
Посмотрите, как выглядит результат. Вар дамп это или что-то.
Мариус

array (2) {[0] => array (2) {["value"] => int (1) ["label"] => object (Magento \ Framework \ Phrase) # 1504 (2) {["text ":" Magento \ Framework \ Phrase ": private] => string (7)" Enabled "[" arguments ":" Magento \ Framework \ Phrase ": private] => array (0) {}}} [1] = > array (2) {["value"] => int (2) ["label"] => object (Magento \ Framework \ Phrase) # 1494 (2) {["text": "Magento \ Framework \ Phrase" : private] => string (8) "Disabled" ["arguments": "Magento \ Framework \ Phrase": private] => array (0) {}}}}
MrTo-Kane,

12
Небольшое, но важное замечание: если доступно, лучше использовать модуль Service Layer. Для атрибутов eav это \Magento\Eav\Api\Attribute RepositoryInterface. Все, что не помечено как @api, рассматривается как личное и может быть удалено в небольших версиях.
Кэнди

5
@Kandy Хорошее замечание. Вы можете написать это как ответ. Я думаю, что это намного лучше, чем у меня.
Мариус

5

Вы можете сделать это, просто позвонив ниже код внутри вашего файла блокировки.

<?php
namespace Vendor\Package\Block;

class Blockname extends \Magento\Framework\View\Element\Template
{
    protected $_productAttributeRepository;

    public function __construct(        
        \Magento\Framework\View\Element\Template\Context $context,   
        \Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository,
        array $data = [] 
    ){        
        parent::__construct($context,$data);
        $this->_productAttributeRepository = $productAttributeRepository;
    } 

    public function getAllBrand(){
        $manufacturerOptions = $this->_productAttributeRepository->get('manufacturer')->getOptions();       
        $values = array();
        foreach ($manufacturerOptions as $manufacturerOption) { 
           //$manufacturerOption->getValue();  // Value
            $values[] = $manufacturerOption->getLabel();  // Label
        }
        return $values;
    }  
}

Звоните внутри вашего phtml файла,

<div class="manufacturer-name">
      <?php $getOptionValue = $this->getAllBrand();?>
      <?php foreach($getOptionValue as $value){ ?>
           <span><?php echo $value;?></span>
      <?php } ?>
</div>

Благодарю.


Это не возвращает параметры для атрибутов, настроенных для использования swatchвходных данных, например color. getOptions()Метод закодирован определенные типов ввода, например , «выпадающие», поэтому он пропускает опцию ввода образчика. Просто хедз-ап, если кто-то еще столкнется с этим.
thaddeusmt

Привет @Rakesh, Как я добился этого же, но для администратора. Мне нужны эти значения параметра для фильтра столбцов сетки. Подскажите пожалуйста.
Рави Сони

5

Используйте следующий код, чтобы получить все параметры атрибута.

function getExistingOptions( $object_Manager ) {

$eavConfig = $object_Manager->get('\Magento\Eav\Model\Config');
$attribute = $eavConfig->getAttribute('catalog_product', 'color');
$options = $attribute->getSource()->getAllOptions();

$optionsExists = array();

foreach($options as $option) {
    $optionsExists[] = $option['label'];
}

return $optionsExists;

 }

Пожалуйста, вы можете нажать здесь для более подробного объяснения. http://www.pearlbells.co.uk/code-snippets/get-magento-attribute-options-programmatically/


4

Я использую сервисный уровень Api, Magento\Eav\Api\AttributeRepositoryInterfaceпредложенный @kandy в комментариях к ответу @marius.

Вставьте элемент данных службы в ваш конструктор следующим образом.

protected $eavAttributeRepository;
public function __construct(
    ...
    \Magento\Eav\Api\AttributeRepositoryInterface $eavAttributeRepositoryInterface,
    ...
){
    ...
    $this->eavAttributeRepository = $eavAttributeRepositoryInterface;
    ...
}

И вы можете получить атрибут, используя это.

$attribute = $this->eavAttributeRepository->get(
    \Magento\Catalog\Model\Product::ENTITY,
    'attribute_code_here'
);
// var_dump($attribute->getData()); 

Чтобы получить массив значений параметров атрибута, используйте это.

$options = $attribute->getSource()->getAllOptions();

2

Внедрить экземпляр \Magento\Catalog\Model\Product\Attribute\Repository вашего конструктора (в блок, вспомогательный класс или где-либо еще):

/**
 * @var \Magento\Catalog\Model\Product\Attribute\Repository $_productAttributeRepository
 */
protected $_productAttributeRepository;

/**
 * ...
 * @param \Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository
 * ...
 */
public function __construct(
    ...
    \Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository,
    ...
) {
    ...
    $this->_productAttributeRepository = $productAttributeRepository;
    ...
}

Затем создайте метод в своем классе, чтобы получить атрибут по коду:

/**
 * Get single product attribute data 
 *
 * @return Magento\Catalog\Api\Data\ProductAttributeInterface
 */
public function getProductAttributeByCode($code)
{
    $attribute = $this->_productAttributeRepository->get($code);
    return $attribute;
}

Затем вы можете вызвать этот метод так, например, внутри .phtml файла

$attrTest = $block->getProductAttributeByCode('test');

Затем вы можете делать вызовы на объект атрибута, например,

  1. Получить варианты: $attribute->getOptions()
  2. Получить ярлык внешнего интерфейса для каждого магазина: $attrTest->getFrontendLabels()
  3. Отладка массива данных: echo '> ' . print_r($attrTest->debug(), true);

debug: Array ([attribute_id] => 274 [entity_type_id] => 4 [attribute_code] => product_manual_download_label [backend_type] => varchar [frontend_input] => text [frontend_label] => Руководство по продукту Загрузить метку [is_required] => 0 [ is_user_defined] => 1 [default_value] => Загрузить руководство пользователя [is_unique] => 0 [is_global] => 0 [is_visible] => 1 [is_searchable] => 0 [is_filterable] => 0 [is_comparable] => 0 [ is_visible_on_front] => 0 [is_html_allowed_on_front] => 1 [is_used_for_price_rules] => 0 [is_filterable_in_search] => 0 [used_in_product_listing] => 0 [used_for_sort_by] => 0 [is_visible_se>]>0 [is_wysiwyg_enabled] => 0 [is_used_for_promo_rules] => 0 [is_required_in_admin_store] => 0 [is_used_in_grid] => 1 [is_visible_in_grid] => 1 [is_filterable_in_grid] => 1 [search]


1
Это очень хорошо объясненный ответ
domdambrogia

0
   <?php
      /* to load the Product */
  $_product = $block->getProduct();
  $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
  $attributeSet = $objectManager- 
   >create('Magento\Eav\Api\AttributeSetRepositoryInterface');
  $attributeSetRepository = $attributeSet->get($_product->getAttributeSetId());
  $_attributeValue  = $attributeSetRepository->getAttributeSetName();  
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.