Magento资源模型过滤和限制

1 php paging orm magento

嗨,当使用Mage :: getResourceModel获取magent资源模型时我可以添加过滤器没有问题,但我怎么能将结果集限制为5或10?

Ala*_*orm 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...
Run Code Online (Sandbox Code Playgroud)