Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用类别 ID 过滤购物车页面中的产品。在购物车页面中,我使用 $this->getItems()。我不知道如何过滤。如果您有任何想法,请帮助我。
为此,您必须编辑购物车控制器中的产品集合,然后您可以使用这样的类别 ID 过滤购物车产品
$this->addFilter('category_id',array('1,2,3')); 或 或 $this->addAttributeToFilter('category_id',array('1,2,3')); $this->addFieldToFilter('category_id',array('1,2,3'));
$this->addFilter('category_id',array('1,2,3'));
$this->addAttributeToFilter('category_id',array('1,2,3'));
$this->addFieldToFilter('category_id',array('1,2,3'));
试试这个然后回复我