var tollerlist = new Array(); for(var k in objToller){ tollerlist.push(k); } $.ajax({ type:"post", url:"${rc.contextPath}/inspection/set-toller-task.json", dataType:"json", data:{workareaId:workareaId,tollerlist:tollerlist}, success:function(data){ } });
@RequestMapping(value = "/set-toller-task") public void setTollerTask(ModelMap model, @RequestParam("workareaId") int workareaId, @RequestParam("tollerlist[]") Listtollerlist) { model.addAttribute(JSON_STATUS, JSON_STATUS_OK); }
本文转自博客园博客,原文链接:,如需转载请自行联系原作者