关于利用laravel开发社区第14节社区评论的问题

按照大神的步骤来的,然后出现了一个问题,就是插入show.blade.php测试的时候

<div class="container">
<div class="row"> 
<div class="blog-post" role="main">
{!! $html !!} 
<hr> 
@foreach($discussion->comments as $comment) 
<div class="media">
 <div class="media-left">
 <a href="#"> 
 <img class="media-object img-circle" alt="64x64" src=" $comment->user->avatar "   style="width: 64px;height: 64px"> </a> 
 </div> 
 <div class="media-body">
 <h4 class="media-heading"> 
 $comment->user->name 
 </h4> 
 $comment->body 
 </div>
 </div> 
@endforeach
</div> 
</div><br></br>

出现以下错误:

LogicException in Model.php line 2673: Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation
Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation (View: /home/vagrant/Code/Laravel/resources/views/forum/show.blade.php)<br></br>

卡在这里,不知如何处理?

JellyBool

你把 Discussion 和 Comment 的 model 之间的关系声明贴出来看看

Alex

@JellyBool
Comment

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Comment extends Model
{
    protected $fillable = ['body','user_id','discussion_id'];
    public function user()
    {
        $this->belongsTo(User::class);
    }

    public function discussion()
    {
        $this->belongsTo(Discussion::class);
    }
}

Discussion.php

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Discussion extends Model
{
    protected $fillable = ['title','body','user_id','last_user_id'];

    public function user()
    {
        return $this->belongsTo(User::class);
    }

    public function comments()
    {
        return $this->hasMany(Comment::class);
    }
}

User.php 中直接复制

public function comments()
    {
        return $this->hasMany(Comment::class);
    }
JellyBool

把你控制器的代码也给我看看把,你可以尝试在控制器中打印一下$discussion->comments。你使用的laravel版本是哪个?尝试改一下这个:

@foreach($discussion->comments() as $comment)

Alex

@JellyBool
在PostsController 中的dd($discussion->comments)返回
Collection {#193 ▼
#items: array:4 [▼
0 => Comment {#194 ▼
#fillable: array:3 [▶]
#connection: null
#table: null
#primaryKey: “id”
#perPage: 15
+incrementing: true
+timestamps: true
#attributes: array:6 [▶]
#original: array:6 [▶]
#relations: []
#hidden: []
#visible: []
#appends: []
#guarded: array:1 [▶]
#dates: []
#dateFormat: null
#casts: []
#touches: []
#observables: []
#with: []
#morphClass: null
+exists: true
+wasRecentlyCreated: false
}
1 => Comment {#195 ▼
#fillable: array:3 [▶]
#connection: null
#table: null
#primaryKey: “id”
#perPage: 15
+incrementing: true
+timestamps: true
#attributes: array:6 [▶]
#original: array:6 [▶]
,由此看是关系是存在的,就是在show.blade.php中测试的时候出现上诉问题,我的版本是5.1.39(lts)

JellyBool

我擦,这样的呀,我就看不出什么问题了

Alex

@JellyBool 我好纠结

Alex

查了下速查表,感觉没啥问题呀

JellyBool

你试过这个没有?

@foreach($discussion->comments() as $comment)
Alex

@JellyBool 我试了下,直接打印$discussion->comments

Alex

@JellyBool

<div class="container">
        <div class="row">
            <div class="blog-post" role="main">
                {!! $html !!}
                <hr>
                {$discussion->comments}

            </div>
        </div>
    </div>
JellyBool

呃,这样看来不是好好的么?。。。。。。。

Alex

@JellyBool 问题出在$comment->user上面,这个关系不正确,修复当中

Alex

@JellyBool
jelly,{$comment->user}这个调用不了,郁闷呀,所有关系都是正确的就是不行,这个太郁闷了

Tomoe

@Alex
Comment.php 裡忘記 return 了.

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Comment extends Model
{
    protected $fillable = ['body','user_id','discussion_id'];
    public function user()
    {
        // 這裡要 return
        return $this->belongsTo(User::class);
    }

    public function discussion()
    {
        // 這裡也是
        return $this->belongsTo(Discussion::class);
    }
}
Alex

@Tomoe 谢谢,我和jelly都没看到