使用Bootstrap Modal显示带有MVC5 / razor的View

时间:2014-07-04 00:20:00

标签: jquery asp.net-mvc twitter-bootstrap razor

我有一个用户列表视图,其中包含一个显示用户的foreach。

用户名可以点击:

@Html.ActionLink(item.UserName, "UserSetAccess", new { id=item.Id }, new{ @class = "dialog" } )

呈现的HTML:

<a href="/Admin/UserSetAccess/37ebbad8-c952-4a75-91d2-197d78d1b175" class="dialog">testCustomer7@example.com</a>

点击此链接会触发此jQuery:

$(function () {
    $('a.dialog').click(function () {
        var url = $(this).attr('href');
        var dialog = $('<div style="display:none"></div>').appendTo('body');
        dialog.load(url, {},
            function (responseText, textStatus, XMLHttpRequest) {
                dialog.dialog({
                    close: function (event, ui) {
                        dialog.remove();
                    }
                });
            });
        return false;
    });
});

此页面上没有<form>个标签,但我在控制器中的GET和POST UserSetAccess操作中都设置了一个断点,唯一受到攻击的是断开对话框的POST。 / p>

为什么.load()发出POST而不是GET?该对话框最初应该弹出并包含GET中的View,然后允许更改,以便我可以提交它们并进行POST。

是否有人发现上述代码存在问题,或者有其他方法可以正常使用?我已经研究过.load(),并且没有看到任何说它发布POST的地方。

修改

根据要求,我包含了Controller Action方法。这两个都是默认的。我在POST操作上注释掉了ValidateAntiForgeryToken属性,因为它出错了 - 可能是与我的问题相同的问题的一部分。我稍后会弄清楚这个问题。

GET Controller Action:

    //
    // GET: /Admin/UserSetAccess/1
    public async Task<ActionResult> UserSetAccess(string id)
    {
        if (id == null)
        {
            return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
        }
        var user = await UserManager.FindByIdAsync(id);
        if (user == null)
        {
            return HttpNotFound();
        }

        var userRoles = await UserManager.GetRolesAsync(user.Id);

        return View(new UserProfileViewModel()
        {
            Id = user.Id,
            Email = user.Email,
            IsApproved = user.IsApproved,
            Name = user.Name,
            Company = user.Company,

            RolesList = RoleManager.Roles.ToList().Select(x => new SelectListItem()
            {
                Selected = userRoles.Contains(x.Name),
                Text = x.Name,
                Value = x.Name
            })
        });
    }

POST控制器操作:

    //
    // POST: /Admin/UserSetAccess/5
    [HttpPost]
    //[ValidateAntiForgeryToken]
    public async Task<ActionResult> UserSetAccess([Bind(Include = "Email,Id,IsApproved,Name,Company")] 
        UserProfileViewModel editUser, params string[] selectedRole)
    {
        if (ModelState.IsValid)
        {
            var user = await UserManager.FindByIdAsync(editUser.Id);
            if (user == null)
            {
                return HttpNotFound();
            }

            user.UserName = editUser.Email;
            user.Email = editUser.Email;
            user.IsApproved = editUser.IsApproved;
            user.Name = editUser.Name;
            user.Company = editUser.Company;

            var userRoles = await UserManager.GetRolesAsync(user.Id);

            selectedRole = selectedRole ?? new string[] { };

            var result = await UserManager.AddToRolesAsync(user.Id, selectedRole.Except(userRoles).ToArray<string>());

            if (!result.Succeeded)
            {
                ModelState.AddModelError("", result.Errors.First());
                return View();
            }
            result = await UserManager.RemoveFromRolesAsync(user.Id, userRoles.Except(selectedRole).ToArray<string>());

            if (!result.Succeeded)
            {
                ModelState.AddModelError("", result.Errors.First());
                return View();
            }
            return RedirectToAction("Users");
        }
        ModelState.AddModelError("", "Something failed.");
        return View();
    }

1 个答案:

答案 0 :(得分:1)

发生POST的原因是因为您将对象传递给.load()方法。来自jQuery documentation

  

如果数据作为对象提供,则使用POST方法;除此以外,   假设GET。

您的代码应该如下所示:

$(function () {
    $('a.dialog').click(function () {
        var url = $(this).attr('href');
        var dialog = $('<div style="display:none"></div>').appendTo('body');
        dialog.load(url,
            function (responseText, textStatus, XMLHttpRequest) {
                dialog.dialog({
                    close: function (event, ui) {
                        dialog.remove();
                    }
                });
            });
        return false;
    });
});

请注意,我在{}的调用中省略了.load()