gpt4 book ai didi

php - laravel 5.4 ownsTo 和 hasMany 不适用于 2 个外键

转载 作者:行者123 更新时间:2023-11-29 19:00:09 26 4
gpt4 key购买 nike

我尝试通过一篇帖子获取评论,并且我正在使用关系 hasMany && ownsTo。我使用了表格帖子和评论。

这是拖车模型

后模型:

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
public function user(){

return $this->belongsTo('App\User');
}
/**
* Get the comments for the blog post.
*/
public function comments()
{
return $this->hasMany('App\Comment' );
}
}

和评论模型

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Comment extends Model
{

/**
* Get the post that owns the comment.
*/
public function post()
{
return $this->belongsTo('App\Post');
}
}

评论表包含2个外键
enter image description here

当我需要选择 1 篇帖子和所有评论时,服务器仅返回帖子

$Post = Post::find( $id ) ;

最佳答案

试试这个:

$Post = Post::find( $id )->with('comment') ;

关于php - laravel 5.4 ownsTo 和 hasMany 不适用于 2 个外键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43940245/

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