资源简介
thinkphp5 h-ui 后台管理系统 基础版 .目前只做了个权限管理 登录注册都已经完成
代码片段和文件信息
package com.baidu.ueditor;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import com.baidu.ueditor.define.ActionMap;
import com.baidu.ueditor.define.AppInfo;
import com.baidu.ueditor.define.baseState;
import com.baidu.ueditor.define.State;
import com.baidu.ueditor.hunter.FileManager;
import com.baidu.ueditor.hunter.ImageHunter;
import com.baidu.ueditor.upload.Uploader;
public class ActionEnter {
private HttpServletRequest request = null;
private String rootPath = null;
private String contextPath = null;
private String actionType = null;
private ConfigManager configManager = null;
public ActionEnter ( HttpServletRequest request String rootPath ) {
this.request = request;
this.rootPath = rootPath;
this.actionType = request.getParameter( “action“ );
this.contextPath = request.getContextPath();
this.configManager = ConfigManager.getInstance( this.rootPath this.contextPath request.getRequestURI() );
}
public String exec () {
String callbackName = this.request.getParameter(“callback“);
if ( callbackName != null ) {
if ( !validCallbackName( callbackName ) ) {
return new baseState( false AppInfo.ILLEGAL ).toJSONString();
}
return callbackName+“(“+this.invoke()+“);“;
} else {
return this.invoke();
}
}
public String invoke() {
if ( actionType == null || !ActionMap.mapping.containsKey( actionType ) ) {
return new baseState( false AppInfo.INVALID_ACTION ).toJSONString();
}
if ( this.configManager == null || !this.configManager.valid() ) {
return new baseState( false AppInfo.CONFIG_ERROR ).toJSONString();
}
State state = null;
int actionCode = ActionMap.getType( this.actionType );
Mapject> conf = null;
switch ( actionCode ) {
case ActionMap.CONFIG:
return this.configManager.getAllConfig().toString();
case ActionMap.UPLOAD_IMAGE:
case ActionMap.UPLOAD_SCRAWL:
case ActionMap.UPLOAD_VIDEO:
case ActionMap.UPLOAD_FILE:
conf = this.configManager.getConfig( actionCode );
state = new Uploader( request conf ).doExec();
break;
case ActionMap.CATCH_IMAGE:
conf = configManager.getConfig( actionCode );
String[] list = this.request.getParameterValues( (String)conf.get( “fieldName“ ) );
state = new ImageHunter( conf ).capture( list );
break;
case ActionMap.LIST_IMAGE:
case ActionMap.LIST_FILE:
conf = configManager.getConfig( actionCode );
int start = this.getStartIndex();
state = new FileManager( conf ).listFile( start );
break;
}
return state.toJSONString();
}
public int getStartIndex () {
String start = this.request.getParameter( “start“ );
try {
return Integer.parseInt( start );
} catch ( Exception e ) {
return 0;
}
}
/**
* callback参数验证
*/
public boolean valid
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 174 2017-11-07 10:15 ba
文件 35 2017-11-06 09:30 ba
文件 736 2017-11-07 10:15 ba
文件 2038 2017-11-06 09:30 ba
文件 13 2017-11-06 09:30 ba
文件 11 2017-11-09 11:25 ba
文件 141 2017-11-09 11:25 ba
文件 7527 2017-11-20 20:33 ba
文件 564 2017-11-13 09:23 ba
文件 1937 2017-11-15 10:02 ba
文件 342 2017-11-14 10:09 ba
文件 2063 2017-11-17 16:34 ba
文件 4680 2017-11-20 19:56 ba
文件 4554 2017-11-17 16:23 ba
文件 6049 2017-11-20 19:57 ba
文件 3829 2017-11-20 20:34 ba
文件 2705 2017-11-20 19:52 ba
文件 3994 2017-11-20 16:27 ba
文件 2100 2017-11-20 19:57 ba
文件 3383 2017-11-10 10:48 ba
文件 5445 2017-11-13 09:22 ba
文件 508 2017-11-10 17:55 ba
文件 1355 2017-11-14 10:13 ba
文件 206 2017-11-07 17:32 ba
文件 16403 2017-11-07 17:57 ba
文件 205 2017-11-07 17:38 ba
文件 606 2017-11-06 09:30 ba
文件 23044 2017-11-10 10:12 ba
文件 8853 2017-11-10 17:40 ba
文件 1914 2017-11-08 11:47 ba
............此处省略3137个文件信息
相关资源
- THINKPHP5__可用
- ThinkPHP5快速入门和路由完全指南和数
- ThinkPHP5.0-快速入门手册(新手教程版
- Thinkphp5内核素材解析源码-支持20+多家
- ThinkPHP5-快速入门pdf
- ThinkPHP5.0快速入门手册
- 基于thinkphp5正式版的cms,完整
- thinkphp5把excel到入到数据库(phpexcel)
- ThinkPHP5控制器从入门到精通
- ThinkPHP5.0控制器从入门到精通-官方同
- thinkphp5 连接SqlService需要的扩展
- thinkphp5 完整版 5.0.20
- ThinkPHP5路由完全指南PDF
- thinkphp5开源商城 含支付宝微信支付
- 基于最新layui的tp5的后台
- thinkphp5.0整合H-ui的博客后台
- 基于ThinkPHP5开发的漂亮通用后台全权
- tp5实现网上书店列表购物车功能
- 开源CRM管理系统-ThinkPHP5+Bootstrap
- ThinkPHP5简易商城
- _ThinkPHP5.0入门教程
- ThinkPHP5企业微信小程序-前端demo+后端
-
thinkphp5加la
yer博客系统源码 - 基于thinkphp5的健身房管理信息系统
- thinkphp5集成HUI后台管理系统
- ThinkPHP5多小区物业管理系统源码系统
- element+thinkphp5+vue
- thinkphp5仿网易音乐的网
- ThinkPhp5.0电商源码前端,后端
- 微信公众平台开发:从零基础到Thin
评论
共有 条评论