如何使用模型获取 Magento 购物车中的商品?
是否有任何代码可以使用任何模型或助手从 Magento 获取添加到购物车的商品及其数量?
Is there any code with which I could fetch items added to the shopping cart and their count from Magento using any models or helpers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
获取购物车对象(在会话中):
然后,获取购物车中的商品列表:
然后,获取每个商品的计数:
To get your cart object (in session) :
Then, to get the list of items in the cart :
Then, to get the count for each item :
要获取购物车中的总数量,您可以使用:
To get the total count in the cart you can use:
该代码还将帮助...
This code will also help...
你也可以做
You can also do