0

我有一个要渲染的树枝模板,存储在 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 存储在html我的 JSON 对象的属性中?

4

0 回答 0