我正在使用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
时,它表明它是一种对象类型。