我正在尝试渲染模态窗口动态,问题是当我返回我的响应Json时,我得到下一个错误:
The Response content must be a string or object implementing __toString(), "boolean" given.
这是我的控制者:
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\JsonResponse;
//Some Code...
public function detallesAction($id)
{
$em = $this->getDoctrine()->getManager();
$articulo = $em->getRepository("FicherosBundle:Articulo")->find($id);
$html = $this->render('FicherosBundle:Articulos:detalles.html.twig', array(
"articulo" => $articulo
))->getContent();
$response = new Response(json_encode(array(
"detalles" => $html
)));
$response->headers->set('Content-Type', 'application/json');
return $response;
}
这是我的模板detalles.html.twig:
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">Detalles</h4>
<small class="font-bold">En esta ventana se ve reflejada toda la información del articulo.</small>
</div>
<div class="modal-body">
Hello world
</div>
<div class="modal-footer">
<button type="button" class="btn btn-white" data-dismiss="modal">Cerrar</button>
</div>
这是我从index.html.twig调用AJAX:
$('.detalles').click(function () {
var id = $(this).data("id");
var url = Routing.generate('articulos_detalles', { id: id });
$.ajax({
url: url,
cache: false,
success: function(response) {
$(".modal-content").html(response.detalles);
$("#myModal2").modal("show");
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
}
})
});
问题出在哪里? :/
答案 0 :(得分:4)
看来你的html无法在json中正确编码。
此外,您应该直接使用renderView
方法和JsonResponse
进行渲染,而无需手动指定标题/编码json。
这样可以防止您出现类似现在使用自定义响应的错误。
应该是:
$html = $this->renderView('FicherosBundle:Articulos:detalles.html.twig', array(
"articulo" => $articulo
))->getContent();
return new JsonResponse($html);
希望这有帮助。