RedirectToAction无法使用$ .post

时间:2014-07-21 01:33:43

标签: c# jquery asp.net-mvc razor

我有问题。我正在尝试使用控制器方法重定向我的应用程序,如下所示:

[HttpPost]
    public ActionResult GetSelected(string Selected, string NewRoleID)
    {
        var StringSelected = Selected.Split(',');
        for (var i = 0; i < StringSelected.Count(); i++)
        {
            if (StringSelected[i] == "true")
            {
                R_ROLEMENU newMenu = new R_ROLEMENU();
                newMenu.RoleID = int.Parse(NewRoleID);
                newMenu.MenuID = i + 1;
                var existing = (from item in db.RoleMenus
                                where (item.RoleID == newMenu.RoleID && item.MenuID == newMenu.MenuID)
                                select item).ToArray();
                if (existing.Count() == 0)
                {
                    db.RoleMenus.Add(newMenu);
                    db.SaveChanges();
                }
            }
            else
            {
                R_ROLEMENU oldMenu = new R_ROLEMENU();
                oldMenu.RoleID = int.Parse(NewRoleID);
                oldMenu.MenuID = i + 1;
                var existing = (from item in db.RoleMenus
                                where (item.RoleID == oldMenu.RoleID && item.MenuID == oldMenu.MenuID)
                                select item).ToArray();
                if (existing.Count() != 0)
                {
                    db.RoleMenus.Remove(existing[0]);
                    db.SaveChanges();
                }
            }
        }
        return RedirectToAction("Logout", "Home");
    }

我正在使用jquery调用方法,如下所示:

$.post("/m_menu/getselected?selected=" + selectedmenus + "&newroleid=" + roleid, function () {
                    //todo
        });

问题是,应用程序会重定向到索引页而不是Home Controller中的Logout操作。我究竟做错了什么?控制器中的其余代码运行正常,只是重定向不起作用。请帮忙,谢谢

1 个答案:

答案 0 :(得分:4)

因为它是ajax调用 RedirectToAction 只会返回名为view的操作作为post的响应,你必须通过jquery重定向 $。发布回调函数:< / p>

在行动而不是:

return RedirectToAction("Logout", "Home");

做的:

return Content(Url.Action("Logout", "Home"));

并在回拨 $。发布时执行此操作:

$.post("/m_menu/getselected?selected=" + selectedmenus + "&newroleid=" + roleid, function (response) {
                  window.location =  response;
        });

或在操作结束时调用javascript:

var script = "window.loaction ='"+Url.Action("Logout","Home")+"' ;";
return JavaScript(script);