如何使用 laravel lumen 跟踪订单?
我正在集成将连接到电子商务平台的 API。我应该添加一个选项来跟踪订单,我该怎么做?
另外,还没有前端,所以我使用 postman 来测试所有 API。
订单在到达买家的途中经过不同的地点,我希望客户现在知道他们的商品在哪个车站
I'm integrating APIs that will be connected to an E-Commerce platform. I'm supposed to add an option to track orders, how do I do that?
Also, there's no frontend yet so I'm using postman to test all the API's.
the orders go through different locations on their way to the buyer, and I'd like the customer to now at which station their item is
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然后观察者中的内容是这样的:
我真的不知道你的逻辑,但我认为这可能是这样的。
通过 wat ->isDirty() 监视列是否已更改。
您还可以获取 $order->getOriginal(('some_column_you_use_to_change_status')
我使用它作为模型历史记录来注册历史记录,甚至在我的模型中设置新版本
then something in the observer like this:
I really don't know your logic but i think this could be something.
by the wat ->isDirty() watches if columns were changed.
you can also get the $order->getOriginal(('some_column_you_use_to_change_status')
I use this for example history of a Model to register history or even set new versions in my models