我有一个我要渲染的树枝模板,存储在JSON对象中,并作为对帖子请求的响应返回。
$response = json_decode('{"version":1,"status":"success"}', true);
$html = $this->render('DumoBundle:Test:Overlay.html.twig',
array('left'=>3,'right'=>4));
$response['html'] = $html;
$response= new Response(json_encode($response));
return $response
但是,当我在浏览器端将JSON对象打印到控制台时,我看到的是以下内容:
{"version":1,"status":"success","html":{"headers":{}}}
如何将所有HTML存储在我的JSON obejct的html
属性中?