每次单击复选框时,相应的 id 都会传递给检查方法。
@RequestMapping(value = Array("checkBoxCheck.html"))
@ResponseBody
def check(@RequestParam checkBoxId: Long) {
processing(checkBoxId)
}
def processing(checkBoxId:Long){....}
上面的代码是spring scala的示例。我想将每个id添加到一个列表中,如果它已经存在,则在处理方法中将它从列表中删除