搜索

首页  >  问答  >  正文

Laravel Eloquent关联函数名称

<p>我有两个表,分别是"posts"和"categories"。"posts"和"categories"之间的关系是多对一。因此,"Post"类模型中的代码如下:</p> <pre class="brush:php;toolbar:false;"><?php namespace AppModels; use IlluminateDatabaseEloquentFactoriesHasFactory; use IlluminateDatabaseEloquentModel; class Post extends Model { use HasFactory; protected $guarded = ['id']; public function category() { return $this->belongsTo(Category::class); } }</pre> <p>使用这段代码,应用程序成功运行。</p><p>问题是,当我尝试将类别函数名称更改为"categories",并且尝试像这样访问帖子的类别名称时:</p><p> <code>Post::first()->categories->name</code>, laravel give an error like this <code>Attempt to read property "name" on null in D:BelajarProgramCODINGANLaravelapplicationcoba-laraveleval()'d code.</code></p> <p>(edited</p> <p>当Eloquent函数名称为"category"时,"Post::first()->category"返回帖子的类别。但是,当我尝试将函数名称更改为"categories"并使用"Post::first()->categories"进行访问时,它返回null。</p> <p>)</p> <p>我尝试将类别类模型中的Eloquent关联函数的名称更改为随机名称,但我仍然可以访问它,并且Laravel没有报错。类别类模型的代码如下:</p> <pre class="brush:php;toolbar:false;"><?php namespace AppModels; use IlluminateDatabaseEloquentFactoriesHasFactory; use IlluminateDatabaseEloquentModel; class Category extends Model { use HasFactory; protected $guarded = ['id']; public function posts(){ return $this->hasMany(Post::class); } }</pre> <p>有人可以帮我吗?为什么我可以更改类别类模型中的Eloquent函数名称,但无法在帖子类模型中更改?</p>
P粉729198207P粉729198207548 天前446

全部回复(1)我来回复

  • P粉330232096

    P粉3302320962023-07-24 00:30:50

    进行以下操作应该可以解决问题:

    public function categories()
    {
        return $this->belongsTo(Category::class, 'category_id', 'id');
    }

    回复
    0
  • 取消回复