laravel 尝试读取空值的属性“name

643ylb08  于 2023-03-04  发布在  其他
关注(0)|答案(8)|浏览(197)

类别模型

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'));
}

这是我的blade页面。当我输入$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();
        });
    }
yrefmtwq

yrefmtwq1#

定义类别关系时需要显式定义类别外键,因为类别外键不是category_id;它是cat_id。
例如,您需要在News模型中定义类别关系,如下所示:

public function category()
{
    return $this->belongsTo(Category::class, 'cat_id');
}
dced5bon

dced5bon2#

我也遇到过同样的问题,我是这样解决的:

$new->category->name ?? None'
vvppvyoh

vvppvyoh3#

我猜你需要重写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为空。

wtlkbnrh

wtlkbnrh4#

<td>{{ $new->category->name ?? 'None' }}</td>
x8diyxa7

x8diyxa75#

我遇到这个问题是因为 name 属性与一个外键相关联,该外键可能是NULL**,因此,当您调用它时会抛出错误。
你可以避免这个具体的问题,我刚才这样想。
李维斯在评论中说:对于使用null safe operator的php 8及更高版本:

$new->category?->name
  • 有了这个,你可以忽略它,如果它是空的,它不会把任何东西在该字段。

这是abdennour说的,如果你想输入某个特定的值,如果它为null,或者你使用的PHP低于8:

$new->category->name ?? 'None'
  • 这样,你就可以避免它为空,当它为空时,你会在那个字段中放入字符串 None
qmb5sa22

qmb5sa226#

检查你的表。关系之间一定有匹配。

  • 示例:*

用户:ID,book_id,名称,电子邮件
图书:ID,标题,价格等。
在users表中,book_id(例如5)必须存在于books中,否则关系将丢失,并出现空错误。

93ze6v8z

93ze6v8z7#

这样的ID可能不存在。请检查一次ID列

xwmevbvl

xwmevbvl8#

你可以很容易地解决这个问题,但把一个条件,如:

<td> $bew->category?$item->category->name:'-' </td>

这段代码将首先进入你的变量并访问你的数据,如果你的数据库中有错误,那么它将向你显示一个-,这样你就可以知道你的数据库中有问题

相关问题