码迷,mamicode.com
首页 > 编程语言 > 详细

ajax 传递数组参数

时间:2019-08-02 16:25:02      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:ons   url   pre   blog   class   amp   cti   jpg   get   

 

一、ajax 传递数组参数

需要添加: traditional: true,

                    let typeIDArr = [1,2,3,4,5,6];
                    var that = this;
                    var url = @Url.Action("GetDictionaryByTypeIDArray", "Dictionary");
                    var data = { typeIDArray: typeIDArr };                  
                    $.ajax({
                        url: url,
                        data: data,
                        type: "get",
                        dataType: "json",
                        dynsc: false,
                        traditional: true,
                        success: function (result) {
                                console.log(GetDictionaryByTypeIDArray, result)
                                if (result != null && result.length > 0) {
                                    that.dictionary = result.rows;
                                }
                        }
                    })
                    //f12 查看传递的参数为:
                    //typeIDArray: 1
                    //typeIDArray: 2
                    //typeIDArray: 3
                    //typeIDArray: 4
                    //typeIDArray: 5
                    //typeIDArray: 6

                    //失败案例二:
                    //data: JSON.stringify(data);
                    //f12 查看传递的参数为:
                    //{"typeIDArray":[1,2,3,4,5,6]}:

失败案例一: ajax 不添加: traditional: true,

                    //f12 查看传递的参数为:
                    //typeIDArray[]: 1
                    //typeIDArray[]: 2
                    //typeIDArray[]: 3
                    //typeIDArray[]: 4
                    //typeIDArray[]: 5
                    //typeIDArray[]: 6

二、后台为 C# MVC控制器方法,接收成功:

 技术图片

 

 MVC 能将下面的键值对参数处理成数组
                    //typeIDArray: 1
                    //typeIDArray: 2
                    //typeIDArray: 3
                    //typeIDArray: 4
                    //typeIDArray: 5
                    //typeIDArray: 6

拓展:
https://www.cnblogs.com/hao-1234-1234/p/10308900.html

不同于MVC和ajax,在webApi axios 情况下尝试失败了,并没有将键值对参数处理成数组。
可能因为路由设置或过滤器设置导致失败,因为据说有人尝试成功了。
参考文档:
https://www.cnblogs.com/accessking/p/6664302.html
https://www.cnblogs.com/zhaokunbokeyuan256/p/7477286.html

 

ajax 传递数组参数

标签:ons   url   pre   blog   class   amp   cti   jpg   get   

原文地址:https://www.cnblogs.com/hao-1234-1234/p/11289012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!