前言
本文在上文基础上把查询、增加、修改以及删除的请求封装在table.js中,实现了所有用到增删改查页面代码复用,对于当前每个功能页面只需要简单几行代码就行。文中以角色增删改查为主,给出对应的代码内容。
后端实现
后端实现只给出如下图接口类和如下完整代码块
package com.xuemeng.controller.sys;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.R