在 magento 集合中,我想使用“store”属性过滤值。我在数组中有一些值。基于该数组,我需要过滤值。但是以下两个功能都不起作用。
$collection->addAttributeToFilter('store',array('in' => array(1,2,3)));
$collection->addFilter('store',array('in' => array(1,2,3));
有没有其他可能让它发挥作用?
在 magento 集合中,我想使用“store”属性过滤值。我在数组中有一些值。基于该数组,我需要过滤值。但是以下两个功能都不起作用。
$collection->addAttributeToFilter('store',array('in' => array(1,2,3)));
$collection->addFilter('store',array('in' => array(1,2,3));
有没有其他可能让它发挥作用?