在Laravel中使用foreach更新数据库

时间:2019-02-13 10:00:36

标签: php laravel laravel-5 php-7

我想使用API​​在数据库中插入新数据,但是首先,我想使用$ po_transaction检查数据库,该数据库是否存在,如果$ po_transaction存在,请进行更新。但是当我输入相同的数据时,它将所有数据更改为一个值

这是我的数据库,首次插入时

enter image description here

这是我的数据库,当我输入相同的数据时(此问题):

enter image description here

这是我的控制者:

public function post_data(Request $request){

        $po_transaction = $request->input('po_transaction');
        $data = $request->input('data');
        $decode_data = json_decode($data);

        if(!$decode_data){
            return response()->json(['message'=>'No Data','success'=>0]);
        }

        $po_id = Produk::where('po_transaction','=', $po_transaction)->first();

        // if po_id exist, update the data
        if ($po_id) {
            foreach ($decode_data as $item => $value) {
                DB::table('produk')
                    ->where('po_transaction', $po_transaction)
                    ->update(['po_transaction'=>$po_transaction, 'nama_produk'=>$value->produk, 'harga_jual'=>$value->price]);
            }

                return response()->json(['message'=>'success, data saved','success'=>1]);


        }else{
            // if po_id not exist, create new
            foreach($decode_data as $item => $value)
            {
                $saveTransaction = new Produk();
                $saveTransaction->po_transaction = $po_transaction;
                $saveTransaction->nama_produk = $value->produk;
                $saveTransaction->harga_jual = $value->price;
                $saveTransaction->save();
            }
            if($saveTransaction->save()){
                return response()->json(['message'=>'success, data saved','success'=>1]);
            }else{
                return response()->json(['message'=>'no data saved','success'=>0]);
            }
        }
    }

对于数据,我正在使用这样的json数据:

[
  {"produk":"shampoo","price":"12000"},
  {"produk":"noodle","price":"110200"}, 
  {"produk":"cup","price":"1000"}
]

这是解码数据:

enter image description here

如何解决此问题,当我输入相同的数据时,它不仅会用一个值更改所有数据吗?

2 个答案:

答案 0 :(得分:2)

您需要通过证明where子句中的id来指定实际上要更新的记录,如下所示:

DB::table('produk')
  ->where([
    'po_transaction' => $po_transaction, 
    'id_produk'=> $value->id,
  ])
  ->update([
    'po_transaction'=>$po_transaction,
    'nama_produk'=>$value->produk,
    'harga_jual'=>$value->price,
]);

答案 1 :(得分:1)

您可以使用此method <model_name>::updateOrCreate()以一种方法创建/更新。

Produk::updateOrCreate(['po_transaction'=>$po_transaction,'nama_produk'=>$value->produk],['harga_jual'=>$value->price]);

有关更多信息,请查看此https://laravel.com/docs/5.7/eloquent