0

让我们从头开始。

我有带有链接的选项卡平移布局。当您单击链接时,会通过以下方式将下拉复选框表单直接注入到 html 中

$(".dropdown-toggle").click(function() {
    var projectId = $("#permission-form").attr("data-project-id");
    var userId = $(this).attr('data-user-id');
    renderModules(projectId, userId, userId);
});

function renderModules(projectId, userId, divId)
{
    $.get(Routing.generate('module_change_permission', {projectId: projectId, userId: userId}))
    .success(function(msg) {
        $('#modules-'+divId).html(msg);
    });
}

module_change_permission 路由将权限引导至控制器

public function moduleAction(Request $request, $projectId, $userId)
{
    $project = $this->get('api.client.manager')->getProject($projectId);
    if (null === $project) {
        throw new Exception("Invalid projectId");
    }

    $em = $this->getDoctrine()->getManager();

    $modulesInfo = $this->get('acme.modules.modulesinfo');

    $module = $modulesInfo->getModule($project, $projectId, $userId);
    if (null === $module) {
        $module = $modulesInfo->createModule($projectId, $userId);
    }

    $form = $this->createForm(new ModuleType($em), $module[0]);

    if ($this->getRequest()->isMethod('GET') && count($_GET)) {
        $form->bind($request);
        if ($form->isValid()) {
            $em->persist($module[0]);
            $em->flush();
        }

        $this->setFlash('modules_success', 'modules_controller.flash.success');

        return $this->redirect($this->generateUrl($this->path, array('id' => $projectId)));
    }

    return $this->render('AcmeProjectBundle:Module:module.html.twig',
        array(
            'form' => $form->createView(),
            'projectId' => $projectId,
            'userId' => $userId,
        )
    );
}

现在我想做同样的事情 - 提交表单但没有重定向(只需刷新特定的 div)。AFAIK 我应该使用 AJAX。但问题是我不知道如何完成提交部分的工作。

我一直在尝试这样的事情:

$('.dropdown-menu-form').submit(function(e) {

var url = $(this).attr("action");

$.ajax({
    type: "PUT",
    url: url, // Or your url generator like Routing.generate('discussion_create')
    data: $(this).serialize(),
    dataType: "html",
    success: function(msg){

        alert("Success!");

    }
});

return false;
});

但仍然不知道如何更改控制器部分。

4

1 回答 1

0

您在 ajax 声明中有 PUT 。因此,要获取 ajax PUT 在 Symfony 控制器中发布的数据,请尝试使用$data = $request->getContent();

而且也不要使用条件$this->getRequest()->isMethod('GET')

或者,您可以将 PUT 方法更改为 GET(甚至是 POST),并像在 moduleAction() 控制器中那样处理结果。

于 2013-11-11T14:24:12.030 回答