在 magento 中从类别及其属性中提取产品
我将使用什么类型的块以及我将调用什么方法。
另外,它会返回什么类型的数组,以及我在哪里可以找到属性、价格和所有这些好东西。
谢谢
what type of block would i use and what method would I call.
Also what type of array would it return and where would I find the attributes , price and all that good stuff.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在模块中声明您自己的块,并使用以下代码来获取您需要的产品:
然后,在您看来:
这应该可以帮助您开始。有关如何检索属性的更多信息,请查看
app/code/core/Mage/Catalog/Model/Product.php
。如果您仍然遇到问题,请发布一些您尝试过的代码,我们可以继续。希望有帮助!
谢谢,
乔
Declare your own block in a module and use the following code to get the products you need:
Then, in your view:
That should get you started. Take a look at
app/code/core/Mage/Catalog/Model/Product.php
for more information on how to retrieve attributes. If you continue to have trouble, post some code you've tried and we can keep going.Hope that helps!
Thanks,
Joe