前端:
var UpCheckedList = JSON.stringify(this.checkedList);
console.log("上传参数:" + UpCheckedList);
ajax({
type: 'post',
url: 'FollowUP/GetFormAction',
dataType: "json",
contentType: "application/json",
data: UpCheckedList,
success: function (msg) {
console.log(msg.msg);
},
error: function (msg) {
console.log("请求失败!" + msg);
}
});
C# 后台: