RedirectToAction不会调用目标控制器和操作

时间:2012-08-10 14:31:22

标签: asp.net-mvc

从ajax jquery对话框调用此post操作。

当我选择了一个模板时,它应该运行RedirectToAction方法但是UnitController和GetTemplateRootUnits操作永远不会被命中?

我错了什么?

   [HttpPost]
    public ActionResult Open(int selectedTemplateId)
    {
     if (ModelState.IsValid)
     {

     return RedirectToAction("GetTemplateRootUnits", "Unit", new { TemplateId = selectedTemplateId });

     }
     else
     {
         return LoadOpenTemplates();
     }          
    }

我的路线表:

 routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Main", action = "Index", id = UrlParameter.Optional }
            );

我要调用的目标控制器/动作:

[HttpGet]
public JsonNetResult GetTemplateRootUnits(int templateId)
{
 IEnumerable<Unit> units = _unitDataProvider.GetTemplateRootUnits(templateId);
 return new JsonNetResult(new { data = units });
}

 function openTemplate(dlg, form) {
        $.ajax({
            url: $(form).attr('action'),
            type: 'POST',
            data: form.serialize(),
            success: function (response) {
                if (response.success) {
                    dlg.dialog("close");
                    $('#TreeDiv').empty();
                    loadUnits(response.data);
                }
                else {  // Reload the dialog with the form to show model/validation errors                    
                    dlg.html(response);
                }
            }
        });
    }

1 个答案:

答案 0 :(得分:1)

使用AJAX POST时,

RedirectToAction将无效 见:

RedirectToAction not working

在这种情况下,您需要使用javascript重定向。

有两种方法:

How to manage a redirect request after a jQuery Ajax call

RedirectToAction not redirecting