关于laravel关联关系问题

使用了关联关系hasOne()处理表单之间从属关系,返回null

详见代码,在使用find查找到cpe对象后,调用第一个DeviceInfo返回对应对象,调用MgtServer确返回null。是不是我忽略了什么呢?

    public function DeviceInfo()
    {
        return $this->hasOne('App\CpeDeviceInfo', 'cpe_id', 'id');
    }

    public function MgtServer()
    {
        return $this->hasOne('App\CpeMgtServer', 'cpe_id', 'id');
    }

那应该就是在 CpeMgtServer 这个对应的 表里面没有数据吧

JellyBool
修改的评论也不能少于六个字哦!
corrine76
修改的评论也不能少于六个字哦!