3

这是我调用产品属性集合的功能我已经获得了产品的产品属性,这些属性已启用,但我在根据它们自己的可见性过滤它们时遇到问题,即我只希望那些状态设置为对管理员可见的产品属性集合。 ...

class ProductList extends \Magento\Framework\View\Element\Template
{
protected $_attributeFactory;

public function __construct(
         \Magento\Catalog\Model\ResourceModel\Eav\Attribute $attributeFactory

         ){
    parent::__construct($context);
    $this->_attributeFactory = $attributeFactory;
    }

public function getallattributes()
{
    $arr = [];
    $attributeInfo = $this->_attributeFactory->getCollection()->addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::KEY_ENTITY_TYPE_ID, 4);

   foreach($attributeInfo as $attributes)
   {
        $attributeId = $attributes->getAttributeId();
        // You can get all fields of attribute here

         $arr[$attributes->getAttributeId()] = $attributes->getFrontendLabel();


   }
   return $arr;
 }                                                                    } 
4

3 回答 3

5

未经测试,但它会为你工作

$attributeInfo = $this->_attributeFactory->getCollection()
                 ->addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::KEY_ENTITY_TYPE_ID, 4)
                 ->addFieldToFilter('is_visible_on_front',1);
于 2018-02-27T12:39:23.940 回答
1

要获取所有产品属性,您需要使用注入类

app/code/Mendor/Mymodule/Model/Attributes.php

 public function __construct(Context $context,   
    \Magento\Eav\Model\ResourceModel\Entity\Attribute\Collection $coll
    ){
 $this->_coll=$coll;
        parent::__construct($context);
}

 public function getAllAttributes()
    {
        $this->_coll->addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::KEY_ENTITY_TYPE_ID, 4);
        $attrAll = $this->_coll->load()->getItems();
 echo '<pre>'; var_dump($attrAll);'</pre>';
        exit;
}
于 2019-09-27T11:12:51.370 回答
0

您可以使用以下功能来做到这一点:

 public function getallattributes()
    {
        $arr = [];
        $attributeInfo = $this->_attributeFactory->getCollection()- 
        >addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::
        KEY_ENTITY_TYPE_I D, 4);
    
        foreach($attributeInfo as $attributes)
        {
            $attributeId = $attributes->getAttributeId();
            // You can get all fields of attribute here
            if($attributes->getIsVisibleOnFront()){
                $arr[$attributes->getAttributeId()] = $attributes 
                     >getFrontendLabel();
            }
        }
        return $arr;
    }
于 2021-08-31T13:59:36.823 回答