Sonata Admin Dependent选择ajax返回空值

时间:2016-10-24 11:03:55

标签: ajax symfony sonata-admin

我有依赖selectBoxes的表单。 我阅读了教程http://symfony.com/doc/current/form/dynamic_form_modification.htmL

但是在我的表示中,ajax总是返回空值 我使用Sonata Admin

1 个答案:

答案 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,
        ]);
    }