js+springMVC 提交数组数据到后台的实例

今天小编就为大家分享一篇js+springMVC 提交数组数据到后台的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

1.ajax 代码

var ids =new Array(); $.ajax({ type: "POST", url: "/user/downReport", dataType: "html", traditional: true, data:{ downReportArray:ids }, async: true, success: function (data) { if(data.code==200){ console.log("正在打包...") } } });

2.后台接收

@RequestMapping(value = "/downReport", method = {RequestMethod.POST}) @ResponseBody public Object downReport(@RequestParam(value = "downReportArray") Long[] downReportArray,HttpServletRequest request ) throws Exception {   ... }

以上这篇js+springMVC 提交数组数据到后台的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2389b7da1ac4d12f3d7bec76d18a10f9.html