简体   繁体   English

Laravel属于关系不起作用

[英]Laravel belongsTo relationship not working

I have three models that I have created Post and Comment and User. 我有三个模型,我创建了帖子和评论和用户。 I am trying to create a relationship in between. 我想在两者之间建立一种关系。 Comment and Post they both have a field "user_id" that matches the id on the User table. 注释和发布它们都有一个字段“user_id”,它匹配User表上的id。 Below are the relationships that I am trying to set: 以下是我要设置的关系:

Comment.php: Comment.php:

<?php

namespace App;


class Comment extends Model
{
    //
    public function post(){

        return $this->belongsTo(Post::class);
    }



    public function user(){ 

        return $this->belongsTo(User::class);
    }
}

Post.php: post.php中:

<?php

namespace App;

class Post extends Model
{

    public function comments(){

        return $this->hasMany(Comment::class);
    }

    public function addComment($body, $name, $email){




        $this->comments()->create(compact('body','name','email'));
    }

       public function user(){ // $comment->user->name

        return $this->belongsTo(User::class);
    }
}

User.php user.php的

    <?php

namespace App;
use App\Post;

use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];

    public function post(){

        return $this->hasMany(Post::class);
    }



}

Now as you can see a Comment belongsTo a user and a post belongsTo a user. 现在你可以看到一个评论属于一个用户和一个帖子属于一个用户。

However when I try to create a new post via tinker (with no user created on database or logged in user) I can create a post with no problem; 但是,当我尝试通过修补程序创建一个新帖子时(没有在数据库上创建用户或登录用户)我可以创建一个没有问题的帖子;

That tells me that the relationship that a post must have a user and a comment must have a user as well its not working! 这告诉我,帖子必须有用户和评论的关系必须有一个用户以及它不工作! Any idea how to fix this ? 知道如何解决这个问题吗?

Migrations: 迁移:

create_posts_migration: create_posts_migration:

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreatePostsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('posts', function (Blueprint $table) {
            $table->increments('id');
            $table->integer('user_id');
            $table->string('title');
            $table->text('body');
            $table->string('image');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('posts');
    }
}

create_comment_migration: create_comment_migration:

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateCommentsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('comments', function (Blueprint $table) {
            $table->increments('id');
            $table->integer('post_id');
            $table->integer('user_id');
            $table->string('email');
            $table->string('name');
            $table->string('body');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('comments');
    }
}

Add the foreign key constraints in your migration to check for valid user when creating a post and to check for valid user and post when creating comments. 在迁移中添加外键约束以在创建帖子时检查有效用户,并在创建注释时检查有效用户和发布。 This should solve your issue. 这应该可以解决您的问题。

Schema::create('posts', function (Blueprint $table) {
    $table->increments('id');
    $table->unsignedInteger('user_id');
    $table->string('title');
    $table->text('body');
    $table->string('image');
    $table->timestamps();

    $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
});

Schema::create('comments', function (Blueprint $table) {
    $table->increments('id');
    $table->unsignedInteger('post_id');
    $table->unsignedInteger('user_id');
    $table->string('email');
    $table->string('name');
    $table->string('body');
    $table->timestamps();

    $table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade');
    $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
});

Change the onDelete option based on your needs. 根据您的需要更改onDelete选项。 The cascade will delete the child relationships when a parent is deleted. 删除父cascade时, cascade将删除子关系。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM