我正在开发一个使用 Symfony2 和 twig 作为模板的应用程序。我也在使用ajax。这是我的控制器中代码的一部分:
public function testuaanotatuAction(Request $request)
{
if ($request->isXmlHttpRequest())
{
return $this->forward('AnotatzaileaAnotatzaileaBundle:Page:Interpretatu');
}
// Some code.....
return $this->render('AnotatzaileaAnotatzaileaBundle:Page:AnotatuInterpretazio.html.twig',
array('Azpimarratu' => $Markagarria->getMarkIdent()));
}
public function InterpretatuAction()
{
return $this->render('AnotatzaileaAnotatzaileaBundle:Page:FAQ.html.twig');
}
然后这是我在 AnotatuInterpretazio.html.twig 中的代码,如果我使用 JQuery 进行 Ajax 调用:
<script type='text/javascript'>
$("#ButtonId").click(function ()
{
$.ajax({
url: "{{ path('AnotatzaileaAnotatzaileaBundle_testuaanotatu') }}",
type: "POST"
});
});
</script>
如您所见,我打算在这里做的是通过模板 AnotatuInterpretazio.html.twig 调用 InterpretatuAction。然后 InterpretatuAction 将调用另一个模板。它不起作用,有什么想法吗?