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){ <!--后面的就不說了,可以看到這個tollerlist 是一個數組--> } });
@RequestMapping(value = "/set-toller-task") public void setTollerTask(ModelMap model, @RequestParam("workareaId") int workareaId, @RequestParam("tollerlist[]") List<Integer> tollerlist) { model.addAttribute(JSON_STATUS, JSON_STATUS_OK); }