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

【JS】【2】ajax传的参数为数组时,后台接收为null的处理

时间:2017-11-03 20:32:12      阅读:881      评论:0      收藏:0      [点我收藏+]

标签:function   href   method   博客   解决   public   数组   fun   body   

前言:

1,参考博客:解决JavaScript中使用$.ajax方式提交数组参数 - Just_Do - 博客园(http://www.cnblogs.com/caoyc/p/5710702.html

2,解决方案:添加traditional : true

正文:

js:

    var array = [];
    $("input").each(function(){
        array.push($(this).val());
    });

    $.ajax({
        type : "GET",
        traditional : true,//数组
        url : "/url",
        data : {
            "array" : array
        },
        success : function(list) {
            
        }
    });

后台:

   @ResponseBody
    @RequestMapping(value = "url", method = RequestMethod.GET)
    public void followDoctorList(String[] array)
    {
    }

 

【JS】【2】ajax传的参数为数组时,后台接收为null的处理

标签:function   href   method   博客   解决   public   数组   fun   body   

原文地址:http://www.cnblogs.com/huashengweilong/p/7779674.html

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