Magento 2 - Come ottenere il valore delle opzioni di attributo dell'entità eav?


18

Come posso ottenere i valori delle opzioni di attributo di eav entity?
Ho trovato una soluzione solo per magento 1.x ma M2 non lo so.
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();

Qualcuno sa, mostratemi passo dopo passo, grazie!

Risposte:


55

puoi aggiungere al costruttore della tua classe un'istanza \Magento\Eav\Model\Configcome questa:

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

allora puoi usarlo nella tua classe

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

Come ottenere "valore" ed "etichetta"?
MrTo-Kane

1
guarda come appare il risultato. Var lo scarica o qualcosa del genere.
Marius

array (2) {[0] => array (2) {["value"] => int (1) ["label"] => oggetto (Magento \ Framework \ Phrase) # 1504 (2) {["text ":" Magento \ Framework \ Phrase ": private] => string (7)" Enabled "[" argomenti ":" 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" ["argomenti": "Magento \ Framework \ Phrase": private] => array (0) {}}}}
MrTo-Kane

12
Piccola ma importante osservazione: se disponibile, meglio usare il livello di servizio del modulo. Per gli attributi eav è \Magento\Eav\Api\Attribute RepositoryInterface. Tutto ciò che non è contrassegnato come @api è trattato come privato e può essere rimosso in versioni minori.
KAndy

5
@KAndy Buona osservazione. Puoi scriverlo come risposta. Penso che sia molto meglio del mio.
Marius

5

Puoi farlo semplicemente chiamando sotto il codice all'interno del tuo file Block.

<?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;
    }  
}

Chiama all'interno del tuo file phtml,

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

Grazie.


Questo non restituisce le opzioni per gli attributi configurati per usare swatchinput, come color. Il getOptions()metodo è codificato su alcuni tipi di input, come "menu a discesa", quindi salta le opzioni di input del campione. Solo un avvertimento se qualcun altro si imbatte in quello.
Thaddeusmt,

Ciao @Rakesh, come ottengo lo stesso, ma per l'amministratore. Ho bisogno di questi valori di opzione per il filtro della colonna Grid. Puoi dirmi per cortesia.
Ravi Soni,

5

Utilizzare il codice seguente per ottenere tutte le opzioni di attributo.

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;

 }

Per favore, puoi fare clic qui per una spiegazione più dettagliata. http://www.pearlbells.co.uk/code-snippets/get-magento-attribute-options-programmatically/


4

Uso Api Service Layer Magento\Eav\Api\AttributeRepositoryInterface suggerito da @kandy nei commenti sulla risposta di @marius.

Iniettare il membro dei dati di servizio nel costruttore come segue.

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

E puoi ottenere l'attributo usando questo.

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

Per ottenere l'array di valori delle opzioni di attributo, utilizzare questo.

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

2

Inietti un'istanza di \Magento\Catalog\Model\Product\Attribute\Repositorynel tuo costruttore (in un blocco, classe helper o ovunque):

/**
 * @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;
    ...
}

Quindi crea un metodo nella tua classe per ottenere l'attributo per codice:

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

È quindi possibile chiamare questo metodo in questo modo, ad esempio all'interno di un file .phtml

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

Quindi è possibile effettuare chiamate sull'oggetto attributo, ad es

  1. Ottieni opzioni: $attribute->getOptions()
  2. Ottieni l'etichetta frontend per ogni negozio: $attrTest->getFrontendLabels()
  3. Debug dell'array di dati: echo '> ' . print_r($attrTest->debug(), true);

debug: Array ([attributo_ID] => 274 [entity_type_id] => 4 [attributo_code] => product_manual_download_label [backend_type] => varchar [frontend_input] => text [frontend_label] => Etichetta download manuale del prodotto [is_required] => 0 [ is_user_defined] => 1 [default_value] => Download del manuale del prodotto [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_ ]_in ricerca0 [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


1
Questa è una risposta molto ben spiegata
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();  
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.