asp.net mvc 后台怎么接受前端返回的array list dictionary

时间:2022-02-16 11:31:58

参考了别人的文章,我这样尝试去写:

数据源:memberInRoles

 var memberInRoles= {};
for(var i=0;i<sureOptions.length;i++){
memberInRoles["memberInRoles["+i+"].UserId"]=sureOptions[i].value;
memberInRoles["memberInRoles["+i+"].RoleId"]="@Model.RoleId";
}

Controller Action

  [HttpPost]
public JsonResult UserSelectSave(List<MemberInRole> memberInRoles)
{
return Json(new { data = 0, msg = "" });
}

尝试使用$.ajax

             $.ajax({
type: "POST",
dataType: "json",
url: "@Url.Action("UserSelectSave", "RoleManager", new { area = "DeskTop" })",
data: { memberInRoles:memberInRoles },
beforeSend: function () { },
complete: function () { },
success: function (data) {
// format error
if(!data||(!data.status&&data.status!=0)){
alertBox(boxcallback, "0", "提示", "系统参数错误!");
return false;
}
// success
if (data.status == "0") { } else {
alertBox(boxcallback, "0", "提示", data.msg);
return false;
}
},
error: function (data) {
alertBox(boxcallback, "0", "提示", "系统异常,请稍后重试");
return false;
}
});

结果发现接收到的参数为null,继续修改:

$.ajax({
type: "POST",
dataType: "json",
url: "@Url.Action("UserSelectSave", "RoleManager", new { area = "DeskTop" })",
data: { memberInRoles},
beforeSend: function () { },
complete: function () { },
success: function (data) {
// format error
if(!data||(!data.status&&data.status!=0)){
alertBox(boxcallback, "0", "提示", "系统参数错误!");
return false;
}
// success
if (data.status == "0") { } else {
alertBox(boxcallback, "0", "提示", data.msg);
return false;
}
},
error: function (data) {
alertBox(boxcallback, "0", "提示", "系统异常,请稍后重试");
return false;
}
});

结果直接报黄页,刷洗的地址是提交之前的地址,而且把我的参数名称前都加了一个hd字符。

对于“DXWorkFlow.Web.Areas.Desktop.Controllers.RoleManagerController”中方法“System.Web.Mvc.ActionResult
UserManager(Int32, Int32, System.String, System.String)”的不可以为 null
的类型“System.Int32”的参数“parentId”,参数字典包含一个 null 项。可选参数必须为引用类型、可以为 null
的类型或声明为可选参数。
Parameter name: parameters

看别人提交时貌似都是采用$.post方式提交的。

结果使用$.post确可行,实在不明白什么原因。

 $.post("@Url.Action("UserSelectSave", "RoleManager", new { area = "DeskTop" })",
memberInRoles,
function(data){
// format error
if(!data||(!data.status&&data.status!=)){
alertBox(boxcallback, "", "提示", "系统参数错误!");
return false;
}
// success
if (data.status == "") { } else {
alertBox(boxcallback, "", "提示", data.msg);
return false;
}
}
);

实在想不明白$.ajax与$.post方式有什么区别。

如果哪位知道$.ajax与$.post区别具体信息,请赐教。

参考文章:

http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx/

http://www.hanselman.com/blog/ASPNETWireFormatForModelBindingToArraysListsCollectionsDictionaries.aspx

http://www.cnblogs.com/birdwudi/archive/2010/08/26/1809511.html