ddAttributeToFilter和OR条件Magento的

ddAttributeToFilter和OR条件Magento的

本文介绍了addAttributeToFilter和OR条件Magento的收藏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想这取决于不同的属性几个标准来选择产品。

I'd like to select products depending on several criteria from different attribute.

我知道如何将用户 $收藏 - > addAttributeToFilter('someattribute',阵列('像'=>'%'));

不过,我想用几个属性为的的条件。

But I'd like to use several attribute for OR condition.

我爱:

$collection->addAttributeToFilter('someattribute', array('like' => 'value'));`

$collection->addAttributeToFilter('otherattribute', array('like' => 'value'));`

要得到产品,无论是someattribute'otherattribute设置为价值

To get products which either 'someattribute' OR 'otherattribute' set to 'value'

这可能吗?

推荐答案

是的。

$collection->addAttributeToFilter(
    array(
        array('attribute'=> 'someattribute','like' => 'value'),
        array('attribute'=> 'otherattribute','like' => 'value'),
        array('attribute'=> 'anotherattribute','like' => 'value'),
    )
);

也看到了Magento维基

这篇关于addAttributeToFilter和OR条件Magento的收藏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 19:33