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

js传递数组到后台

时间:2018-05-13 16:04:45      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:cat   var   字符串   分享   nbsp   text   uil   font   技术分享   

今天一位同事碰到了这个问题,相互讨论了下,记录下备忘

方法一: 
1.使用JSON.stringify 将数组对象转化成json字符串;

var array = ["1", "2"];
$.ajax({  
    type : ‘POST‘,  
    url: path + ‘/check/testPost‘,  
    contentType : "application/json" ,
    data : JSON.stringify(array), 
    success : function(data) {  

    }  
}); 

2.传输过程中参数 
技术分享图片

3.后台处理

@RequestMapping(value = "/testPost", method = {RequestMethod.POST})
public void testPost(@RequestBody String[] array) throws IOException {
    for (String string : array) {
        System.out.println(string);
    }
    return ;
}

方法二: 
1.前端不做处理:

var array = ["1", "2"];
$.ajax({  
    type : ‘POST‘,  
    url: path + ‘/check/testPost‘,
    contentType: "application/x-www-form-urlencoded",
    data: {"array": array},
    success : function(data) {  
    }  
});  

2.传输过程中参数 
技术分享图片

3.后台处理

@RequestMapping(value = "/testPost", method = {RequestMethod.POST})
public void testPost(HttpServletRequest req) throws IOException {
    String[] array = req.getParameterValues("array[]");
    for (String string : array) {
        System.out.println(string);
    }
    return ;
}

注:两种post请求的content-type不同。

 

 

来源:https://blog.csdn.net/zhaohuijiadelu/article/details/54408324

js传递数组到后台

标签:cat   var   字符串   分享   nbsp   text   uil   font   技术分享   

原文地址:https://www.cnblogs.com/kongxc/p/9032355.html

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