Magento资源模型过滤和限制

发布于 2024-09-15 10:16:30 字数 87 浏览 10 评论 0原文

您好,当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白龙吟 2024-09-22 10:16:30

假设您正在谈论 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...

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).

//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...
$select->limit(5)  

例如检查 app/core/mage/Catalog/Model/Resource/Eav/Mysql4/Url.php 中的 _getProducts() 方法(第 806 行)

$select->limit(5)  

check for example the _getProducts() method in app/core/mage/Catalog/Model/Resource/Eav/Mysql4/Url.php (line 806)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文