gpt4 book ai didi

Magento addAttributeToFilter 多选

转载 作者:行者123 更新时间:2023-12-04 22:34:34 26 4
gpt4 key购买 nike

我在 Magento 多选择属性上使用 addAttributeToFilter 时遇到问题。

我有一个汽车制造商的多选属性,所以内容是“奥迪”、“宝马”等。在我的示例中,我有一个轮胎产品,我从多项选择中选择了 5 个。

我想展示将“BMW”作为其选定字段之一的产品。

我尝试了以下所有这些都不起作用:

$products->addAttributeToFilter('make', array('like' => '%BMW%'));  
$products->addFieldToFilter('make', array('like' => '%BMW%'));
$products->addAttributeToFilter('make', array('like' => '%38%')); // id of the attribute option

似乎没有任何效果。

最佳答案

解决方案是使用 Find In Set 查询,例如:

$this->_productCollection->addAttributeToFilter("make", array("finset"=>"38"));

可以在这里看到讨论: http://www.magentocommerce.com/boards/viewthread/201312/

以及不同选项的列表: http://www.magentocommerce.com/knowledge-base/entry/magento-for-dev-part-8-varien-data-collections

关于Magento addAttributeToFilter 多选,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10519670/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com