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

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

將數(shù)據(jù)插入到具有單個(gè)表單的兩個(gè)表中。Laravel:錯(cuò)誤違反完整性約束

將數(shù)據(jù)插入到具有單個(gè)表單的兩個(gè)表中。Laravel:錯(cuò)誤違反完整性約束

PHP
qq_笑_17 2023-04-15 20:49:20
所以我想知道如何將數(shù)據(jù)插入到兩個(gè)不同的表中,但 linke,表 Poste(offer,ad)和公司,每個(gè)廣告都鏈接到一個(gè)公司,我創(chuàng)建了兩個(gè)模型,只有 1 個(gè)控制器,Post 和 Company 以及 Postecontroller。Schema::create('entreprises', function (Blueprint $table) {            $table->bigIncrements('id');            $table->string('nomEntreprise');            $table->string('adresseEntreprise');            $table->timestamps();        });Schema::create('postes', function (Blueprint $table) {            $table->increments('idPoste');            $table->unsignedBigInteger('idEntreprise');            $table->string('nomPoste');            $table->text('descriptionPoste');            $table->timestamps();            $table->foreign('idEntreprise')                ->references('id')                ->on('entreprises')                ->onDelete('cascade');        });public function create()    {        $postes = Poste::all();        $entreprises = Entreprise::all();        return view('postes.create', compact('postes','entreprises'));    }public function store(Request $request)    {        $data = $request->validate([            'nomPoste'=>'required|min:3',            'descriptionPoste'=>'required|min:3'        ]);        $data2 = $request->validate([            'nomEntreprise'=>'required|min:3',            'adresseEntreprise'=>'required|min:3'        ]);        Poste::create($data);        Entreprise::create($data2);        return back();    }class Poste extends Model{    protected $fillable = ['nomPoste','descriptionPoste','idEntreprise'];    public function entreprise()    {        return $this->belongsTo(Entreprise::class,'idEntreprise');    }}protected $fillable = ['nomEntreprise', 'adresseEntreprise'];    public function poste()    {        return $this->hasMany(Poste::class);    }當(dāng)我通過工廠插入數(shù)據(jù)時(shí),它運(yùn)行良好,因?yàn)槲以O(shè)法通過 id 顯示他公司的帖子。但是插入導(dǎo)致我出現(xiàn)如下錯(cuò)誤:違反完整性約束:1452 無法添加或更新子行:外鍵約束失?。╬rojetetudiant.postes,CONSTRAINT postes_identreprise_foreign FOREIGN KEY (idEntreprise) REFERENCES entreprises (id) ON DELETE CASCADE) .我是新來的,剛開始學(xué)習(xí) laravel,我已經(jīng)卡住了,所以請真的需要幫助!對不起我的英語我是法國人。
查看完整描述

1 回答

?
有只小跳蛙

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

如果您沒有企業(yè)記錄,則不能插入帖子記錄。

在您的情況下,您在企業(yè)之前插入帖子,這就是錯(cuò)誤。


您的商店功能將變?yōu)椋?/p>


public function store(Request $request)

{

    $data = $request->validate([

        'nomPoste'=>'required|min:3',

        'descriptionPoste'=>'required|min:3'

    ]);

    $data2 = $request->validate([

        'nomEntreprise'=>'required|min:3',

        'adresseEntreprise'=>'required|min:3'

    ]);


    $newEnterprise = Entreprise::create($data2);

    Poste::create($data + [

        'idEntreprise' => $newEnterprise->id

    ]);


    return back();

}


查看完整回答
反對 回復(fù) 2023-04-15
  • 1 回答
  • 0 關(guān)注
  • 193 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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