如何通过magento中的自定义下拉属性值过滤所有产品?

时间:2012-02-23 10:32:13

标签: zend-framework magento magento-1.4 magento-1.5

我创建了一个名为“ by_item ”的自定义下拉属性,并为其添加了一些选项,如“套房,新娘,牛仔裤”等。

<?php   // get all products
        $collection = Mage::getModel('catalog/product')->getCollection();
        $collection->addAttributeToSelect('*');

        //filter codition
        $collection->addFieldToFilter(array(
                        array('attribute'=>'by_item','eq'=>"Suite"),
                    ));

        foreach ($collection as $product) {

        var_dump($product->getData());
    }

    ?>

它什么都没有:(

但是当我这样做时:

<?php 
    $collection = Mage::getModel('catalog/product')->getCollection();
    $collection->addAttributeToSelect('*');

    //filter codition
    //$collection->addFieldToFilter(array(
    //                array('attribute'=>'by_item','eq'=>"Suite"),
    //            ));

    foreach ($collection as $product) {
    echo $product->getName() . "<br />";


}

?>
它给了我所有产品的名称。我访问了很多文章,但没有遇到任何问题:(

1 个答案:

答案 0 :(得分:8)

这不起作用,因为您使用addFieldToFilter()的OR版本(嵌套数组)。

你想要的是AND版本。试试这个:

$collection = Mage::getModel('catalog/product')->getCollection();
    ->addAttributeToSelect('*')
    ->addFieldToFilter('by_item', array('eq' => 'Suite'));

foreach ($collection as $product) {
    var_dump($product->debug());
}

修改

忽略了OP正在谈论“下拉”属性(不是文本字段)。

使用addFieldToFilter()按“下拉”属性进行过滤时,您必须使用选项的值/ ID ,而不是选项的文字/标签。

例如,如果您的自定义下拉属性具有此选项

id    text
12    Suite
13    Bridal
14    Jeans

并且您希望按“套件”进行过滤,您可以这样编码:

$collection = Mage::getModel('catalog/product')->getCollection();
    ->addAttributeToSelect('*')
    ->addFieldToFilter('by_item', array('eq' => '12'));

你也可以间接使用你的选项的文字/标签:

$collection = Mage::getModel('catalog/product')->getCollection();
    ->addAttributeToSelect('*')
    ->addFieldToFilter(
        'by_item',
        array(
            'eq' => Mage::getResourceModel('catalog/product')
                        ->getAttribute('by_item')
                        ->getSource()
                        ->getOptionId('Suite')
        )
    );