0

所以我通过 CURL 从远程资源获取 json api 响应,如下所示:

$curly = json_decode($output, true);

然后我将它传递给视图构建函数,如下所示:

return View::make('assman.index', $curly);

然后当我尝试访问刀片视图中的 $curly 属性时,如下所示:

... {{ $asses[0]->url }} ...

我的幸福结局看起来像:

Trying to get property of non-object
4

1 回答 1

0

所以嗯..我只需要对 curl 响应进行类型转换:

$curly = (array)json_decode($output);

该死。

于 2013-10-14T18:42:19.983 回答