Magento SOAP API:获取最畅销的产品
我刚刚为了一份新工作而学习 Magento 及其 Web 服务 API。我刚刚成功构建了一些基本的 PHP 脚本来获取特定类别的产品。我现在需要获取最畅销的产品,但正在努力寻找这方面的良好文档。任何帮助、指示、示例代码或其他任何东西都将非常感激......
谢谢,
汤姆
I’m just learning Magento and its Web Services API for a new job. I’ve just managed to build some basic PHP scripts fetching products in specific categories. I now need to fetch the best-selling products, but am struggling to find good documentation on this. Any help, pointers, sample code or anything else really would be much appreciated...
Thanks,
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信使用 Web 服务 API 无法做到这一点。然而,在 Magento 自己的 PHP 中,您可以通过以下方式获得最畅销的产品:
I believe there's no way to do this with the Web Services API. However within Magento's own PHP you can get the most sold products with the following:
我认为没有直接的方法可以使用 API 来做到这一点。也许您可以通过检索所有销售订单并找到订购最多的产品来做到这一点。
一种快速的方法是扩展 api 以添加一个可以执行您想要的操作的方法。
I think there is not a direct way to do that with the API. Maybe you can do so by retrieving all the sales orders, and find which of the products have been the most ordered.
A quick way would also be to extend the api to add a method which will do what you want.