SpringMVC第八篇——使用陣列接收引數(批量刪除)
阿新 • • 發佈:2019-01-04
選中批量進行刪除:
頁面提交的form表單
<form action="abc" method="post">
1<input type="checkbox" name="id" value="1" >
高度<input type="text" name="height" >
長度<input type="text" name="width" ><br>
2<input type="checkbox" name="id" value="2" >
高度<input type="text" name="height" >
長度<input type="text" name="width" ><br>
3<input type="checkbox" name="id" value="3" >
高度<input type="text" name="height" >
長度<input type="text" name="width" ><br>
4<input type="checkbox" name="id" value="4" >
高度<input type ="text" name="height" >
長度<input type="text" name="width" ><br>
5<input type="checkbox" name="id" value="5" >
高度<input type="text" name="height" >
長度<input type="text" name="width" ><br>
<button type="submit">刪除</button>
</form>
controller接收:
@RequestMapping(value = "/abc")
public ModelAndView itemList(String [] id){
System.out.println(Arrays.toString(id));
ModelAndView ma=new ModelAndView();
ma.setViewName("/hello.jsp");
return ma;
}
頁面傳過來一組id的值,自動的繫結到String [] id 的陣列上了