How to get product collection by multiple attributes?

Magento 2.0

有帮助吗?

解决方案

You can use

Magento\Catalog\Model\ProductFactory;

to get product collection and filter by multiple attribute like this:

$productCollection = $this->_productFactory->create()->getCollection()->addAttributeToSelect('*')->addFieldToFilter('sku',array('eq' => $styleCode));

Use "Dependency Injection" method to implement this, Please reply if need more clarification,

许可以下: CC-BY-SA归因
scroll top