将json传递给foreach查看cakephp

时间:2018-06-27 01:21:48

标签: php cakephp

我正在使用cakephp,使http客户端的驱动程序是这样的

public function index()
{
    $http = new Client();
    $response = $http->get('http://localhost/paginaws/articles/index.json');
    $json = $response->json;
    $valor = $response->body;

    $this->set(compact(['valor']));
}

,我想要将其传递给将要成为表的视图。我知道我必须使用foreach,但是它什么都没有显示。当执行var_dump时,它表明它是一种对象类型。

0 个答案:

没有答案