Laravel Response内容必须是实现__toString()的字符串或对象,给出"object"

Ala*_*lik 8 php json laravel laravel-4 laravel-5

我想运行技能功能,但我不能.

Route.php

Route::get('setting',function(){
    return \App\User::first()->skills();
});
Run Code Online (Sandbox Code Playgroud)

user.php的

protected $casts = [
    'skills' => 'json'
];

public function skills(){
    return new Skills($this , $this->skills);
}
Run Code Online (Sandbox Code Playgroud)

Skills.php

namespace App;
use App\User;
use Mockery\Exception;

class Skills
{
    protected $user;
    protected $skills = [];

    public function __construct(User $user,array $skills){

        $this->user=$user;
        $this->skills=$skills;
    }
}
Run Code Online (Sandbox Code Playgroud)

我想进入/设置页面我有" The Response content must be a string or object implementing __toString(), "object" given."错误.

我尝试dd()在路由中添加函数的返回,我看到所有JSON数据但是$skills->get(),$skill->set()当时没有工作.

编辑:

Skills.php

<?php
    /**
     * Created by PhpStorm.
     * User: root
     * Date: 01.08.2015
     * Time: 11:45
     */

    namespace App;
    use App\User;
    use Mockery\Exception;

    class Skills
    {
        protected $user;
        protected $skills = [];

        public function __construct(User $user,array $skills){
            $this->user=$user;
            $this->skills=$skills;
        }

        public function get($key){
            return array_get($this->skills,$key);
        }

        public function set($key,$value){
            $this->skills[$key]=$value;
            return $this->duration();
        }

        public function has($key){
            return array_key_exists($key,$this->skills);
        }

        public function all(){
           return $this->skills;
        }

        public function merge(array $attributes){
            $this->skills = array_merge(
                $this->skills,
                array_only(
                    $attributes,
                    array_keys($this->skills)
                )
            );
            return $this->duration();
        }

        public function duration(){
            return $this->user->update(['skills' => $this->skills]);
        }

        public function __get($key){
            if ($this->has($key)) {
                return $this->get($key);
            }
            throw new Exception("{$key} adl? Yetenek bulunamad?");
        }
    }
Run Code Online (Sandbox Code Playgroud)

jed*_*ylo 6

当你这样做

return \App\User::first()->skills();
Run Code Online (Sandbox Code Playgroud)

您正在返回Relation定义对象,该对象未实现__toString()方法.返回相关对象需要的是

return \App\User::first()->skills;
Run Code Online (Sandbox Code Playgroud)

这将返回一个包含相关技能的Collection对象 - 这将被正确序列化.