Magento资源模型过滤和限制
您好,当使用 Mage::getResourceModel 在 magent 中获取资源模型时,我可以添加过滤器,没有问题,但如何将结果集限制为 5 或 10?
Hi when getting a resource model in magent using Mage::getResourceModel i can add filters no problem but how can i limit the result set to say 5 or 10?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您正在谈论 Magento Collections,ORM 使用分页样式界面来限制事物。您告诉集合您希望每个页面有多大 (
setPageSize
),然后告诉它您希望位于哪个页面 (setCurPage
)。Assuming you're talking about Magento Collections, the ORM uses a paging style interface to limit things. You tell the collection how big you want each page to be (
setPageSize
), then you tell it which page you want to be on (setCurPage
).例如检查
app/core/mage/Catalog/Model/Resource/Eav/Mysql4/Url.php
中的_getProducts()
方法(第 806 行)check for example the
_getProducts()
method inapp/core/mage/Catalog/Model/Resource/Eav/Mysql4/Url.php
(line 806)