jsp jQuery Ajax 实现批量删除

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>




图书信息管理系统- 图书列表













	

图书信息展示




全选 数据编号 图书名称 作者 添加日期 图书价格 操作
${stat.index+1} ${book.name} ${book.author}  

controller处理类局部代码

@ResponseBody
	@RequestMapping("/deleteBooksByIds")
	public String deleteBooksByIds(HttpServletRequest request, String ids,
			@RequestParam(name = "pageIndex", defaultValue = "1", required = false) Integer pageIndex) {
		ModelAndView mv = new ModelAndView();
		int count = 0;

		if (ids != null) {
			String[] idarr = ids.split(",");
			for (String id : idarr) {
				try {
					count = service.deleteBookById(Integer.parseInt(id));
				} catch (Exception e) {
					e.printStackTrace();
					return "error";
				}
			}
			return "ok";
		} else {

			return "error";
		}

	}

 

你可能感兴趣的:(java)