laravel中如何在模型中自关联?

发布于 2022-09-04 09:00:35 字数 376 浏览 14 评论 0

在模型中声明一对多的关系,关联表本身。parent_id对应父记录的id。我在sof中查阅到很多这样的写法:

public function belongsToParent(){
    return $this->belongsTo(self::class, "parent_id");
}

public function hasManyChildren(){
    return $this->hasMany(self::class, "parent_id");
}

但是我通过模型的with('belongsToParent')查不到关系,parent_id有值,关联的relations却为null。请问这种写法是对的吗?为什么查不到关联模型呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

蝶…霜飞 2022-09-11 09:00:35

Tree 的完整实现:
参考:https://git.load-page.com/r/l...

belongsTo的用法和hasOne的效果是一样的,只是参数反过来。

public function parent()
{
    return $this->hasOne(get_class($this), $this->getKeyName(), 'parent_id');
}

public function children()
{
    return $this->hasMany(get_class($this), 'parent_id', $this->getKeyName());
}
ID  pid title
1   0   中国
2   1   广东省
3   2   广州市
4   2   深圳市
5   3   白云区

使用


$a = Tree::with(['children'])->find(2);
dd($a->children);
输出 广州市 深圳市

我考虑到你这可能只是基类,就好像我这个类一样,并不是直接用的,最好使用如下方法获取final的类名:

  • get_class($this)

  • static::class

因为 self 的意思是 __CLASS__,而非final的类

℡寂寞咖啡 2022-09-11 09:00:35

把self换成static试试

数理化全能战士 2022-09-11 09:00:35

把self:class改成$this就对了

残月升风 2022-09-11 09:00:35
public function aa(){

    return $this->hasMany('App\Http\Model\aa','uid');
}

public function bb(){

    return $this->hasMany('App\Http\Model\bb','uid');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文