我确信这可以通过一些聪明的mysql表达式或zend连接来解决,但我在这里没有足够的知识来解决,希望SO社区中的某个人可以。
假设我在Magento有一系列产品,并按类别排名。
我只想从集合中检索2个产品,那些具有最高类别位置的产品。
以下内容应说明:
Category:
Product A (position 3);
Product B (position 1);
Product C (position 0);
Product D (position 2);
在这个集合中,我只想检索产品C和B,因为它们是两个最高位置。
另一个例子:
Category:
Product A (position 1);
Product B (position 3);
Product C (position 0);
Product D (position 2);
在这个集合中,我只想检索产品C和A.
如何在单个集合加载中完成此操作。例如,我不想加载集合,然后迭代并手动排序等。
答案 0 :(得分:0)
$_category = Mage::getModel('catalog/category')->load($categoryId);
$coll = $_category->getProductCollection()->addAttributeToSort('position','ASC');
$coll->getSelect()->limit(2);
$coll->load();
之后你可以迭代你的收藏:
foreach ($coll as $product) {
// Do sth. with $product
}