本项目使用 Spring Boot 搭建, 用于加深对 Spring Boot 与 Shiro 的学习.
- 基础框架:Spring Boot 2.0.6.RELEASE
- 持久层框架:Mybatis 3.4.6
- 安全框架:Apache Shiro 1.4.0 摸板引擎:Thymeleaf 3.0.9.RELEASE 数据库连接池:Druid 1.1.10 缓存框架:Redis 日志打印:logback
- 基本模板: X-Admin
- 弹出层: Layer
{
"code": 0,
"msg": "success",
"data": 5,
}
{
"code": 0,
"msg": "success",
"data": "true/false",
}
{
"code": 0,
"msg": "success",
"data": {
"username": "abc",
"age": 28
}
}
{
"code": 0,
"msg": "success",
"data": [
{
"person": {
"username": "abc",
"age": 28
}
},
{
"person": {
"username": "cde",
"age": 20
}
}
]
}
{
"code": 0,
"count": 30,
"data": [
{
"person": {
"username": "abc",
"age": 28
}
},
{
"person": {
"username": "cde",
"age": 20
}
}
]
}
/**
* 显示错误信息
* @param result: 错误信息
*/
function showError(s) {
layer.msg(s);
}
/**
* 处理 ajax 请求结果
* @param result: ajax 返回的结果
* @param fn: 成功的处理函数 ( 传入data: fn(result.data) )
*/
function handlerResult(result, fn) {
// 成功执行操作,失败提示原因
if (result.code == 0) {
fn(result.data);
}
// 没有登陆异常,重定向到登陆页面
else if (result.code == -1) {
//showError("没有登录");
$("#logindlg").modal('show');
}
// 参数校验出错,直接提示
else if (result.code == 1) {
showError(result.msg);
}
// 没有权限,显示申请权限电子流
else if (result.code == 2) {
showError("没有权限");
} else {
// 不应该出现的异常,应该重点关注
showError(result.msg);
}
}
/**
* 根据id删除配置项
*/
function deleteConfig(id) {
$.delete('config/delete', {
id: id
}, function (result) {
console.log('delete result', result);
handlerResult(result, fetchAllConfigs);
});
}