代码之家  ›  专栏  ›  技术社区  ›  Prafulla Kumar Sahu umang naik

laravel,其中json包含laravel审计

  •  0
  • Prafulla Kumar Sahu umang naik  · 技术社区  · 6 年前

    在的“新值”列中 auditable_id=2239 , new_values {"video_status_ids":"[4,10]"} 我得到了正确的数据

    修补匠

    App\Video::find(2239)->audits()->get()
    

    集合包含

    OwenIt\Auditing\Models\Audit {#3140
             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 {#138
         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等,这就行不通了。只因为我的要求,就可以了。

    1 回复  |  直到 6 年前