我有一个jQuery ajax调用,我试图发送用户的int ID,可以从复选框表中选择。
我遇到的问题是没有选择任何用户。我期望一个空数组,但事实上我收到一个长度= 1的数组,包含userId 0(即一个未赋值的int值)。
以下代码段会重现问题
$('#test').click(function () {
var numbers = $('.noElements').map(function () {
// (selector does not match any elements, to demonstrate)
return 1;
}).get();
$.ajax({
url: '/MyController/Test',
type: "GET",
data: { numbers: numbers, count: numbers.length }
});
});
public ActionResult Test(IEnumerable<int> numbers, int count)
{
Assert(numbers.Count() == count);
return null;
}
Assert失败,因为numbers
为List<int> { 0 }
。为什么绑定发生这样?
答案 0 :(得分:1)
我相信默认模型绑定器会将通过jQuery AJAX调用传递给它的空字符串转换为包含单个元素的整数数组,该元素包含整数(0)的默认值。如果你做了类似的事情,那么你的代码就可以了 -
$('#test').click(function () {
var numbers = $('.noElements').map(function () {
return 1;
});
if (numbers.length == 0) {
numbers = null;
count = 0;
}
else count = numbers.length;
$.ajax({
url: '/Home/Test',
type: "GET",
data: { numbers: numbers, count: count }
});
});
有关详细信息和备用解决方案,请参阅此问题 - How to post an empty array (of ints) (jQuery -> MVC 3)