ajax 是否可以发送一个 json-array(带有 json 对象的数组)并且还包括一个单独的参数以在 MVC 操作方法中接收?
JavaScript:
var n = {
number: 1
};
$.ajax({
type: "POST",
url: url,
contentType: "application/json; charset=utf-8",
dataType: "html",
data: JSON.stringify({jsonObjects:json, number:n}),
success: function (response) {
$('#body').html(response)
}
});
MVC 动作:
public ActionResult Create(List<JsonObjects> jsonObjects, int? number)
JsonObjects 像预期的那样进来,但数字为空。