jquery ajax get 数组参数

Posted evemen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery ajax get 数组参数相关的知识,希望对你有一定的参考价值。

对一些get请求,但方法参数要求是数组或集合的,如下

       public virtual ActionResult Test(List<int> ids)
        
            return Json("");
        

参数ids是一个集合,请求方式

http://www.XX.com/test?ids=1&ids=2

上面写法ids的值会收到1和2

如果以ajax的get方式请求,除了直接拼url外,还可以这样写

           var ids = new Array();
            ids.push(1);
            ids.push(2);
$.ajax( type:
"get", traditional:true, url: "/test", data: ids: ids , dataType: "json", success: function (res) );

 

设置 traditional:true即可

这样就不用拼url了

 

以上是关于jquery ajax get 数组参数的主要内容,如果未能解决你的问题,请参考以下文章

jquery中的ajax参数

Jquery使用ajax参数详解

Jquery中AJAX参数详细介绍

JQuery中的AJAX参数详细介绍

jquery ajax 方法及各参数详解

Jquery中AJAX参数详细-转