第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如果最后一個(gè)被刪除,則獲取下一個(gè) id

如果最后一個(gè)被刪除,則獲取下一個(gè) id

PHP
肥皂起泡泡 2022-07-09 10:04:15
我有 bill 和 product_bill 表。我需要在 product_bill 表中使用 bill_id 并且我應(yīng)該首先創(chuàng)建賬單,所以 id 這樣做了public function store(Request $request){    if( Bill::first() == null )    {        $bill_id = 1;    }    else {        $bill_id = Bill::orderBy('id','desc')->first()->id +1 ;    }    // dd($bill_id);    $brand_id = auth('brand')->id();    $bill = new Bill();    $bill->brand_id = $brand_id;    $bill->date = Carbon::today();    $data = $request->all();    $products = [];    $total = 0;    for($i = 0 ; $i<count($data['id']) ; $i++)    {           $prod = new ProductsBill();        $prod->product_id = $data['id'][$i] ;        $prod->quantity = $data['quantity'][$i];        $prod->bill_id = $bill_id;        $products[] = $prod->attributesToArray();        $price = Product::find($prod->product_id)->price;        $total += $price * $prod->quantity;    }    $bill->total = $total;    $bill->save();    ProductsBill::insert($products);    return redirect()->back();}當(dāng)我刪除任何賬單時(shí),product_bill 表中的新 bill_id 會(huì)獲得最后一個(gè)的下一個(gè)數(shù)字,我需要知道下一個(gè)將創(chuàng)建該 ID,謝謝。
查看完整描述

2 回答

?
繁星coding

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超4個(gè)贊

如果您在變量save()上使用函數(shù)$bill,您將通過(guò)訪(fǎng)問(wèn)$bill->id. 如果您想確保您的交易完成,您可以使用DB transactions。


use DB;


class ... {


   ...


    public function store(Request $request)

    {

        $brand_id = auth('brand')->id();

        $bill = new Bill();

        $bill->brand_id = $brand_id;

        $bill->date = Carbon::today();


        DB::beginTransaction();


        try{

            $bill->save();


            $data = $request->all();

            $products = [];

            $total = 0;

            for($i = 0 ; $i<count($data['id']) ; $i++)

            {   

                $prod = new ProductsBill();

                $prod->product_id = $data['id'][$i] ;

                $prod->quantity = $data['quantity'][$i];

                $prod->bill_id = $bill->id;

                $products[] = $prod->attributesToArray();

                $price = Product::find($prod->product_id)->price;

                $total += $price * $prod->quantity;

            }

            $bill->total = $total;

            $bill->save();

            ProductsBill::insert($products);


            DB::commit();


            return redirect()->back();


        } catch(\Illuminate\Database\QueryException $ex){ 

            DB::rollBack();

            // Exception redirect here


        }

    }


    ...


}


查看完整回答
反對(duì) 回復(fù) 2022-07-09
?
慕運(yùn)維8079593

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊

如果我正確理解您的問(wèn)題,您可能可以使用 mysql 函數(shù)來(lái)獲取最后插入的 ID 并添加一個(gè)。

https://dev.mysql.com/doc/refman/8.0/en/information-functions.html#function_last-insert-id


查看完整回答
反對(duì) 回復(fù) 2022-07-09
  • 2 回答
  • 0 關(guān)注
  • 120 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)