public ActionResult DoSomething(string [] arr,bool someBool,int someInt){}
var test = []; test.push('dog'); test.push('cat'); $container.load('MyController/DoSomething',{ 'arr[]': test,'someBool': true,'someInt': 1 },function(response,status,xhr) { // ... });
数组参数是null,其他参数都很好.我究竟做错了什么?
Chrome开发人员工具显示正在提交的表单数据
arr%5B%5D%5B%5D:dog arr%5B%5D%5B%5D:cat someBool:true someInt:1
不知道在那里发生了什么,但对我来说看起来不正确
解决方法
如果您使用jquery 1.4,您可能需要将
traditional
参数设置为true,以便与ASP.NET MVC中的默认模型binder格式兼容:
var test = []; test.push('dog'); test.push('cat'); $.ajax({ url: 'MyController/DoSomething',type: 'GET',traditional: true,data: { arr: test,someBool: true,someInt: 1 },success: function(result) { $container.html(result); } });
var data = { arr: test,someInt: 1 }; $container.load('MyController/DoSomething',$.param(data,true),xhr) { // ... });