gpt4 book ai didi

php - 从 laravel 中的表单输入将数据插入到 hasone 表中

转载 作者:行者123 更新时间:2023-11-28 23:16:38 24 4
gpt4 key购买 nike

我有两个表,一个是用户,它是父表,另一个是帖子(子)表,它的列是

 public function up(){        Schema::create('posts', function (Blueprint $table) {            $table->increments('id');            $table->integer('user_id');            $table->string('title');            $table->string('body');            $table->timestamps();        }   }

我已经指定了

$this->hasOne('发布');

与用户模型的关系。现在我想将数据插入到 posts 表中,使用表单我可以将数据保存到 title 和 body 列到相应的 id 中。

最佳答案

如果是经过身份验证的用户,您可以这样做:

auth()->user()->posts()->create($request->all());

要使 create() 方法起作用,您还需要具有 $fillable 数组以及 Post 模型中的所有属性:

$protected fillable = ['title', 'body'];

关于php - 从 laravel 中的表单输入将数据插入到 hasone 表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43575627/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com