我有依赖selectBoxes的表单。 我阅读了教程http://symfony.com/doc/current/form/dynamic_form_modification.htmL
但是在我的表示中,ajax总是返回空值 我使用Sonata Admin
答案 0 :(得分:0)
你的控制器Action必须实现方法:
link_params = params[:link_params] #assuming there is nested params under the name :link_params
模板:
if ($request->isXmlHttpRequest()) {
return $this->render('MyBundle:Task:ajax-template.html.twig', [
'form' => $view,
]);
}