在的“新值”列中
auditable_id=2239
,
new_values
是
{"video_status_ids":"[4,10]"}
我得到了正确的数据
修补匠
App\Video::find(2239)->audits()->get()
集合包含
OwenIt\Auditing\Models\Audit {
id: 322113,
user_type: "App\User",
user_id: 3,
event: "updated",
auditable_type: "App\Video",
auditable_id: 2239,
old_values: "{"video_status_ids":"[4, 8]"}",
new_values: "{"video_status_ids":"[4,10]"}",
url: "http://example.com?",
ip_address: "ipaddr",
user_agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.
36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36",
tags: null,
created_at: "2019-03-04 13:30:57",
updated_at: "2019-03-04 13:30:57",
},
但是为了
一。
App\Video::find(2239)->audits()->whereJsonContains('new_values->video_status_ids', 10)->get()
和
2.
App\Video::find(2239)->audits()->where('new_values->video_status_id', 10)->get()
和
三。
App\Video::find(2239)->audits()->where('new_values->video_status_ids', "[10]")->get()
我得到了
=> Illuminate\Database\Eloquent\Collection {
all: [],
}
但我应该拿到上面的记录。
周围工作
App\Video::find(2239)->audits()->where('new_values', 'like','\{"video_status_ids"%10%')->get()
和
App\Video::find(2239)->audits()->where('new_values->video_status_ids', 'like',"%10%")->get();
但如果有101,100等,这就行不通了。只因为我的要求,就可以了。