くそみたいに何度も忘れて調べて出てこなくて、自分のコードを引っ張ってきているのでメモしました。
Symfony2でResponseのMIMEをtext/jsonを渡す方法です。
$response = new Response(); $response->headers->set('Content-type', 'text/json'); return $this->render( 'AcmeYourBundle::template.json.twig', array( ), $response );
なんで忘れるんだろうかと。
コメント
Hi, note that you have now a JsonResponse type as of Symfony 2.3
–> https://github.com/symfony/symfony/blob/master/src/Symfony/Component/HttpFoundation/JsonResponse.php
See you. COil
Thank you for your advise. great symfony 2.3^^ I will.