如何使用 laravel lumen 跟踪订单?

发布于 2025-01-11 03:16:28 字数 135 浏览 0 评论 0原文

我正在集成将连接到电子商务平台的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最单纯的乌龟 2025-01-18 03:16:28
php artisan make:observer OrderObserver

然后观察者中的内容是这样的:

    /**
     * Handles the correct fields when updating
     * @param Order $order
     * @return void
     */
    public function updating(User $user)
    {
        if($order->isDirty('some_column_you_use_to_change_status')) {
              $someStatusTable = SomeStatusTable::where('track_id', $order->track_id)->first();
          $someStatusTable->status = "whateverYOUwant";
        }
    }

我真的不知道你的逻辑,但我认为这可能是这样的。

通过 wat ->isDirty() 监视列是否已更改。

您还可以获取 $order->getOriginal(('some_column_you_use_to_change_status')

我使用它作为模型历史记录来注册历史记录,甚至在我的模型中设置新版本

php artisan make:observer OrderObserver

then something in the observer like this:

    /**
     * Handles the correct fields when updating
     * @param Order $order
     * @return void
     */
    public function updating(User $user)
    {
        if($order->isDirty('some_column_you_use_to_change_status')) {
              $someStatusTable = SomeStatusTable::where('track_id', $order->track_id)->first();
          $someStatusTable->status = "whateverYOUwant";
        }
    }

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文