doutany76678 2014-03-26 15:42 采纳率: 0%
浏览 24
已采纳

Laravel 4 Eloquent试图获得非物体的财产

Really sorry to bother you all, but I have a noob question concerning some code in a Laravel 4 Tutorial:

In this tutorial, we have to manage relationships between multiple tables. Here is the models codes:

<?php
class Auteur extends Eloquent
{
    public $timestamps = false;
    public function livres()
    {
        return $this ->hasMany('Livre');
    }
}

The other model:

<?php
class Livre extends Eloquent
{
    public $timestamps = false;
    public function auteur()
    {
         return $this ->belongsTo('Auteur');
    }
}

And when I call :

Route::any('DynEloquent',function()
{
    foreach(Livre::with('auteur')->get() as $livre)
    echo '"'.$livre->titre.'" a été écrit par '.$livre->auteur->nom.'<br>';
});

I have an ErrorException:Trying to get property of non-object apparently on $livre->auteur->nom.

Any help will be much appreciated since I've already tried to find my way in the official docs and other stuff like the similar questions on eloquent relationship. (even if I'm pretty sure I'm missing an easy thing)(Forgive my English since I'm french.)

Thanks.

Table auteurs: -id -nom -prenom -naissance

Table livres: -id -titre -auteur_id

  • 写回答

1条回答 默认 最新

  • douyanxing6054 2014-03-26 15:50
    关注

    It looks like that your relation $livre->auteur is not returning any data, it's probably null, which is not an object and then you get the message Trying to get property of non-object. To be sure you can do:

    Route::any('DynEloquent',function()
    {
        foreach(Livre::with('auteur')->get() as $livre)
        {
           dd( $livre->auteur );
        }
    });
    

    You have to check tour relations, if they are really pointed to the correct $tables and your database table, to see if they are correctly filled with proper relational data.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误