尝试在 null 上读取属性“名称”
Posted
技术标签:
【中文标题】尝试在 null 上读取属性“名称”【英文标题】:Attempt to read property "name" on null 【发布时间】:2021-05-17 00:36:24 【问题描述】:类别模型
class Category extends Model
use HasFactory;
protected $fillable= ['name','number'];
public function news()
return $this->hasMany(News::class);
新闻模型
class News extends Model
use HasFactory;
protected $fillable= ['cat_id','title','photo','description','author_id','status'];
public function category()
return $this->belongsTo(Category::class);
public function author()
return $this->belongsTo(Author::class);
作者模型
class Author extends Model
use HasFactory;
protected $fillable= ['name','status'];
public function news()
return $this->hasMany(News::class);
这 3 个模型之间存在关系。我想在news-list.blade.php
中显示类别名称而不是 category_id。我收到此错误。
这是我的控制器功能
public function news_index()
$news= News::with('category')->get();
return view('News.list',compact('news'));
这是我的刀片页面。当我输入 $new->category->name
而不是 cat_id
时出现错误。
@foreach($news as $new)
<tr>
<th scope="row">$loop->iteration</th>
<td> $new->category->name</td>
<td> $new->title</td>
<td> @if($new->photo)
<a href="url('storage/images/'.$new->photo)" target="_blank" class="btn btn-sm btn-secondary">Görüntüle</a></td>
@endif
</td>
<td> $new->author_id</td>
<td> $new->description</td>
<td> $new->status</td>
<td>
<a class="btn btn-danger" onclick="return confirm('Silmek istediğinize emin
misiniz?')" href="route('news_delete', $new->id)"><i class="fa fa-trash"></i></a>
<a class="btn btn-primary" href="route('news_update',$new->id)"><i class="fa
fa-pen"></i></a>
</td>
</tr>
@endforeach
这是我的新闻迁移表
public function up()
Schema::create('news', function (Blueprint $table)
$table->id();
$table->unsignedBigInteger('cat_id');
$table->string('title');
$table->string('photo');
$table->longText('description');
$table->unsignedBigInteger('author_id');
$table->boolean('status')->default('1');
$table->foreign('cat_id')->references('id')->on('categories')->onDelete('cascade');
$table->foreign('author_id')->references('id')->on('authors')->onDelete('cascade');
$table->timestamps();
);
【问题讨论】:
我猜你使用 with() 错误。 类别和新闻应该是多对多关系。 【参考方案1】:我猜你需要重写你的 news_index() 函数。
public function news_index()
$news = News::with(array('category'=>function($query)
$query->select('id','name');
))->get();
return view('News.list',compact('news'));
我希望这会奏效。您没有为 $news 变量分配任何内容并将其传递给查看。 $new 为空。
【讨论】:
我仍然遇到同样的错误。我在我的刀片中使用它。 $new->category->number。尝试在 null 上读取属性“名称” 声明 $new 变量,然后将其传递给视图。 $news = News::with(array('category'=>function($query) $query->select('id','name'); ))->get(); 我已经尝试过了。它不起作用,但感谢您的回复【参考方案2】:您需要在定义类别关系时明确定义您的类别外键。因为你的分类外键不是category_id;这是 cat_id。
例如,您需要在 News 模型中定义类别关系,如下所示:
public function category()
return $this->belongsTo(Category::class, 'cat_id');
【讨论】:
【参考方案3】:检查您的桌子。关系之间必须匹配。
示例: 用户:id、book_id、姓名、电子邮件 书籍:id、标题、价格等...
users表中book_id,例如5,必须存在books,否则关系丢失,出现null错误。
【讨论】:
以上是关于尝试在 null 上读取属性“名称”的主要内容,如果未能解决你的问题,请参考以下文章
尝试在 Laravel 8 中读取 null 上的属性“名称”
TypeError:无法在反应中读取 null 的属性“名称”