我的操作接受一个整数值数组:
public ActionResult ActionName(int firstParamId, int secondParamId, int[] contactIds)
我正在使用以下代码,但未发送选定的整数数组。
function btnSend_onclick() {
var firstParamId = 1;
var secondParamId= 2;
var selectedContactIds = [];
$('#ContactsListContainer input:checked').each(function() {
selectedContactIds.push($(this).val());
});
var params = {
firstParamId : firstParamId ,
secondParamId: secondParamId,
contactIds: selectedContactIds
};
$.get('/ControllerName/ActionName', JSON.stringify(params))
.done(function(data, status) {
alert("Data: " + data + "\nStatus: " + status);
})
.fail(function(data) {
debugger;
alert(data.responseText);
});
}
我收到每个参数的以下错误:
The parameters dictionary contains a null entry for parameter 'firstParamId' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult Actionname(Int32, Int32, Int32[])'
in 'AppNamespace.MvcUI.Controllers.ControllerName'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter.<br>Parameter name: parameters
上面的代码有什么问题?