嗨,当使用Mage :: getResourceModel在magent中获取资源模型时,我可以添加过滤器没有问题但是如何将结果集限制为5或10?
答案 0 :(得分:7)
假设您正在谈论Magento Collections,ORM使用分页样式界面来限制事物。您告诉收藏品您希望每个页面有多大(setPageSize
),然后告诉它您想要在哪个页面(setCurPage
)。
//same as, and "better" than Mage:getResourceModel('catalog/product_collection');
Mage::getModel('catalog/product')
->getCollection()
->setPageSize(10)->setCurPage(1); //first 10 items
Mage::getModel('catalog/product')
->getCollection()
->setPageSize(10)->setCurPage(2); //second 10 items
///etc...
答案 1 :(得分:3)
$select->limit(5)
检查_getProducts()
中的app/core/mage/Catalog/Model/Resource/Eav/Mysql4/Url.php
方法(第806行)