0

レンダリングし、JSON オブジェクトに保存し、投稿要求への応答として返したい twig テンプレートがあります。

$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":{}}}

htmlJSON オブジェクトのプロパティにすべての HTML を保存するにはどうすればよいですか?

4

0 に答える 0