Laravel Relationships -Trying获取非对象的属性

时间:2017-01-03 21:16:45

标签: php mysql laravel enums

我正在编写RP cms,我正在尝试执行以下操作。 所以在我的MySQL数据库中,我有两个对这个问题很重要的表。

srp_user_statistics - 保存每个用户的角色扮演数据,它有一个user_id作为链接到users表的主键。该表还有一个government_id int列,用于链接到government_roles

中的id

srp_government_roles - 保存用户可以拥有的政府角色列表。它包含以下列: http://image.prntscr.com/image/335f9fc5f1174236a1a7bed6eb8d7d7e.png

那么我到底想要实现的目标是什么?我正在尝试获取链接到srp_government_roles记录的所有roleplay_statistic实例,其中government_type是特定值,例如我正在尝试编写政府页面,并且每个政府类型都有一个面板框,并且在该面板内框中显示了具有该政府类型的每个用户的信息。

<?php

namespace App\Database\Website\Roleplay;

use Eloquent;
use App\Database\Website\Roleplay;

class GovernmentRole extends Eloquent
{
    protected $primaryKey   = 'id';
    protected $table        = 'srp_government_roles';
    public $timestamps      = false;
    protected $fillable     = [];

    public function stats(){
       return $this->hasMany(Roleplay::class, 'government_id');
   }
}

角色扮演课程:     

use Eloquent;

class Roleplay extends Eloquent
{
    protected $primaryKey   = 'id';
    protected $table        = 'srp_user_statistics';
    public $timestamps      = false;
    protected $fillable     = ['user_id'];

    public function user()
    {
        return $this->belongsTo('App\Database\Website\User\Player', 'user_id', 'id');
    }

    public function government_type()
    {
        return $this->belongsTo(GovernmentRole::class, 'government_id');
    }
}

这是我政府页面的控制器:

<?php

namespace App\Http\Controllers\Frontend\User;

use Auth;
use Cache;
use Illuminate\Http\Request;
use App\Database\Website\User\Roleplay;
use App\Database\Website\Roleplay\GovernmentRole;
use App\Database\Website\Roleplay\Life\LifeEvents;

class GovernmentController
{
    public function getView()
    {
        $government_type = GovernmentRole::where('government_type', 'higher_government')->first();
        $stats = $government_type->stats;

        foreach ($stats as $stat) {
            echo $stat->user_id . '<br>';
        }

        exit();

        return view('frontend.community.government');
    }
}

这段代码我只是为了测试而添加:

 $government_type = GovernmentRole::where('government_type', 'higher_government')->first();
            $stats = $government_type->stats;

            foreach ($stats as $stat) {
                echo $stat->user_id . '<br>';
            }

            exit();

但是上面有一小段代码我有这个问题:

ErrorException in GovernmentController.php line 17:
Trying to get property of non-object

当我解决了这个问题后,我希望实现这样的目标:

namespace App\Http\Controllers\Frontend\User;

use Auth;
use Cache;
use Illuminate\Http\Request;
use App\Database\Website\Roleplay\Life\LifeEvents;

class GovernmentController
{
    public function getView()
    {
        $higherGovernment = Cache::remember('government.higher_government', function() {
            return Roleplay::get();
        });

        $seniorGovernment = Cache::Remeber('government.senior_government', function() {
            return Roleplay::get();
        });

        $juniorGovernment = Cache::remember('government.junior_government', function () {
            return Roleplay::get();
        });

        return view('frontend.community.government', compact('higherGovernment', 'seniorGovernment', 'juniorGovernment'));
    }
}

但是我想让玩家获得正确的类型,而不仅仅是获得上面代码中显示的所有角色扮演统计数据。

2 个答案:

答案 0 :(得分:1)

我可能是错的,因为我正在研究Lumen,这有点不同,但首先 - 为什么要扩展Eloquent而不是模型? (例如,使用Illuminate \ Database \ Eloquent \ Model;类Roleplay扩展Model)。如果我使用关系而没有明确地将它添加到模型中,我也看到了一个问题。所以在你的情况下:

use Illuminate\Database\Eloquent\Model;

class GovernmentRole extends Model
{
    protected $primaryKey   = 'id';
    protected $table        = 'srp_government_roles';
    public $timestamps      = false;
    protected $fillable     = [];

    protected $with = [ 'stats' ];

    public function stats(){
       return $this->hasMany(Roleplay::class, 'government_id');
   }
}

您还可以使用&#34;添加关系&#34;在您的查询:

$government_type = GovernmentRole::where('government_type', 'higher_government')->with( 'stats' )->first();

正如我所说,这将在Lumen中起作用,但我认为它也应该在Laravel

答案 1 :(得分:0)

当查询找不到任何内容时,问题是first()方法返回null。因此,只需在代码中添加null检查:

If (!is_null($government_type)) {

$stat中的一个没有user_id。您也应该在此处添加类似的检查,或将此列设置为不可为空。