从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);
}
}
});
}
答案 0 :(得分:1)
RedirectToAction
将无效
见:
在这种情况下,您需要使用javascript重定向。
有两种方法: