前端AJAX传递数组给Springmvc接收处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端AJAX传递数组给Springmvc接收处理相关的知识,希望对你有一定的参考价值。
前端传递数组后端(Spring)来接收并处理:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>测试页面</title> <script type="text/javascript" src="http://www.ostools.net/js/jquery/jquery-1.7.2.js"></script> <script type="text/javascript"> function ccc() { var btn = document.getElementById("btn"); $.ajax({ type:‘post‘, url:‘http://localhost:8080/event/add.do‘, data: {url:["www.baidu.com","www.qq.com"]}, dataType:‘text‘,//服务器返回的数据类型 可选XML ,Json jsonp script htmltext等 success:function(msg){ }, error:function(){ alert(‘error‘); } }) } </script> </head> <body> <div> <button id="btn" onclick=ccc()>点击测试</button> </div> </body> </html>
后端:
@RequestMapping(value = "add") public void add( @RequestParam(value = "url[]",required = false,defaultValue = "") String[] url, HttpServletResponse response) { System.out.println(url) }
以上是关于前端AJAX传递数组给Springmvc接收处理的主要内容,如果未能解决你的问题,请参考以下文章