这个 post 操作是从 ajax jquery 对话框中调用的。
当我选择了一个模板时,它应该运行 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);
}
}
});
}