Laravel 5.5 Eloquent JSON update 无效

发布于 2022-09-07 19:48:46 字数 1623 浏览 22 评论 0

参考资料

https://laravel-china.org/top...

问题背景

Larvale 和MySQL 版本:

Laravel 5.5
MySQL 5.7.22

migration: ext为json 格式:
            $table->json('ext')->nullable()->comment('额外的信息');
Sample Model 我设置了casts
   protected $casts = [
        'ext' => 'object'
    ];

问题重现

>>> $sample = App\Entities\Sample::find(6);
=> App\Entities\Sample {#2947
     id: 6,
     surveyor_group_id: null,
     share_code: "2sssshell2o",
     code: "222221234526",
     name: "charlie",
     mobile: "xxxxxx",
     telephone: "xxx-xxxx",
     address: "8282891",
     location_id: null,
     ext: "{"hello": "word"}",
     created_at: "2018-07-26 03:21:52",
     updated_at: "2018-07-26 03:21:52",
   }
>>> $sample->update(['ext->hello'=>'nihao']);
=> true
>>> $sample
=> App\Entities\Sample {#2947
     id: 6,
     surveyor_group_id: null,
     share_code: "2sssshell2o",
     code: "222221234526",
     name: "charlie",
     mobile: "xxxxx",
     telephone: "xxx-xxxx",
     address: "8282891",
     location_id: null,
     ext: "{"hello": "word"}",
     created_at: "2018-07-26 03:21:52",
     updated_at: "2018-07-26 03:21:52",
   }

问题描述

>>> $sample->update(['ext->hello'=>'nihao']);

数据库为更新没有生效?各位大神是啥问题呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

半岛未凉 2022-09-14 19:48:46

已经找到答案。看起来是一个 Laravel 的 bug

相似的问题:

https://laracasts.com/discuss...

Eloquent 应该写成:

$sample->update([
    'ext'=>[
        'hello'=>'world2'
        ]
   ]);

DB class 可以写成

$sample->update(['ext.hello'=>'world2']);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文