将购物车内容从一个网站传递到另一个独立于平台的解决方案?
我在一家产品制造商工作,我们不直接向客户销售产品,而是通过我们的经销商网络进行分销。我想为我们的网站访问者提供一种构建购物车的方法,然后将购物车内容传递到他们选择的经销商网站。
该解决方案需要独立于平台,尽管我将在 ASP.net 中进行开发,因为我们经销商的网站平台各不相同。我假设大多数(如果不是全部)都没有现有的 API 可以与之交互。
您认为完成这项任务的好方法是什么?
谢谢!
I work for a product manufacturer and we do not sell products directly to customers, distribution is through our dealer network. I'd like to provide our website visitors with a means to build a shopping cart and then pass the cart contents off to the dealer website of their choice.
The solution needs to be platform independent, even though I will be developing in ASP.net since our dealers' website platforms vary. I would assume most, if not all, do not have an existing API to interface with.
What do you think would be a good means of accomplishing this task?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个引用注册表(使用 mongodb、memcached 或任何您喜欢的内容)并创建一个 Restful api 来访问该注册表,您可以使用您喜欢的任何格式(例如 json、xml )。您甚至可以使用某种队列管理器来完成此任务
make a quote registry (with mongodb, memcached or whatever you like) and make a restful api to access that registry you can use any format you like (like json, xml ). You can even use some kind of queue manager to acomplish that