评论

收藏

[jQuery] easyui入门

开发技术 开发技术 发布于:2021-06-28 14:35 | 阅读数:503 | 评论:0

  主要学的框架:layout布局,tree组件,tab组件,简单权限概念,datagrid组件,dialog组件,form组件
  需求:完成后台主界面的搭建,单个菜单的管理功能(增删改查)
主要以需求来贯穿easyui的学习


  • 通过layout组件来完成界面的布局
  • 通过tree组件来完成左侧菜单栏的展示
  • 通过点击左侧菜单,来打开右侧选项卡,来学习tab组件
  • 通过演示不同的用户登录,看到不同的菜单,明确权限的用法
  • 通过打开一个选项卡,展示一张表的数据,明确datagrid组件的用法
  • 通过新增,修改用户信息,来明确dialog组件及form组件的用法
  根据jquery的学习,我们知道如下三点:

  • 组件式开发的概念
  • 实体类的json串与map集合的json是一样的
  • 对map集合通用的查方法
  ui框架在市面上有如下三种(除了分布式)
本次讲的是单机项目,只有一个服务器。分布式会有五六台上十台服务器

  • easyui=jquery+html4(用来做后台的管理界面):
  (流行)市面上已经被淘汰,但它是免费的。


  • bootstrap=jquery+html5
  (流行)支持响应式,它的样式不会根据你界面的分辨率调大调小而失效。布局和后台交互需要花钱。就相当于eayui能做的功能bootstrap也能完成,但bootstrap能做的更好看,缺点:要钱


  • layui
  支持响应式,2016年出来的一种框架,发展历史短,框架不够完善,框架本身存在bug。特点:做的东西好看,但是有些需求不够完善,能开发。
  小结:
本次需求案例用easyui做,其他两个都能做。
为什么选easyui来学:第一点:不要钱。第二点:功能完善;第三点:api最全
bootstrap:api网上要零零散散的找
layui:发展历史较短,api相当于easyui没有那么全
  案例:

  • 通过layout布局
  • 通过tree加载菜单
  • 通过菜单去打开不同的tab页
  学习前端框架:
api
jar包
DSC0000.png
代码演示
首先需要布局,导jar包:
DSC0001.png
第一步:看api
第二步:看demo
DSC0002.png
界面效果图
DSC0003.png
看api学习:
DSC0004.png
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath }/static/easyui5/themes/default/easyui.css">
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath }/static/easyui5/themes/icon.css">
<script type="text/javascript"
src="${pageContext.request.contextPath }/static/easyui5/jquery.min.js"></script>
<script type="text/javascript"
src="${pageContext.request.contextPath }/static/easyui5/jquery.easyui.min.js"></script>
<title>后台管理主界面</title>
</head>
<body class="easyui-layout">
<div data-options="region:'north',border:false"
style="height: 60px; background: #B3DFDA; padding: 10px">north
region</div>
<div data-options="region:'west',split:true,title:'West'"
style="width: 150px; padding: 10px;">west content</div>
<div
data-options="region:'east',split:true,collapsed:true,title:'East'"
style="width: 100px; padding: 10px;">east region</div>
<div data-options="region:'south',border:false"
style="height: 50px; background: #A9FACD; padding: 10px;">south
region</div>
<div data-options="region:'center',title:'Center'"></div>
</body>
</html>
  运行结果:
DSC0005.png
  注意:路径,顺序(一定按照别人官方文档顺序加载)
  左侧加载
看demo树形tree加载:
出现如下效果:
DSC0006.png
看api:
DSC0007.png
创建js文件
DSC0008.png DSC0009.png
  注意:要和jsp和json数据在同级目录
  然后去index.jsp 引入json
<script type="text/javascript"
src="${pageContext.request.contextPath }/static/js/index.js"></script>
  运行结果:
DSC00010.png
键不能变,值可变
DSC00011.png
实体类的描述
package com.myy.entity;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
 * 针对easyui属性展示的json格式串进行了实体类的描述
 * @author myy
 *
 */
public class TreeNode {
  private String id;
  private String text;
  private List<TreeNode> children = new ArrayList<TreeNode>();
  private Map<String, Object> attributes = new HashMap<String, Object>();
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public List<TreeNode> getChildren() {
return children;
}
public void setChildren(List<TreeNode> children) {
this.children = children;
}
public Map<String, Object> getAttributes() {
return attributes;
}
public void setAttributes(Map<String, Object> attributes) {
this.attributes = attributes;
}
@Override
public String toString() {
return "TreeNode [id=" + id + ", text=" + text + ", children=" + children + ", attributes=" + attributes + "]";
}  
  
}
  自定义mvc框架
导入需要用到的jar包:
DSC00012.png
web.xml配置中央控制器
工具类
DSC00013.png
  链接:https://pan.baidu.com/s/1lhZ_nv5Vn0GcPgdNEJzD9w
提取码:qt7t
  MenuDao
package com.myy.dao;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.myy.entity.TreeNode;
import com.myy.util.JsonBaseDao;
import com.myy.util.JsonUtils;
import com.myy.util.PageBean;
import com.myy.util.StringUtils;
/**
 * 1.查询数据库所有数据用于easyui的tree树形展示(但是直接得来的数据格式easyui不识别)
 * 2.递归查询节点集合,形成子父节点关系,具备层次结构
 * 3.转格式
 * @author myy
 *
 */
public class MenuDao extends JsonBaseDao{
 /**
  * List<TreeNode>加上ObjectMapper可以转换成easyui的tree控件识别的json串
 * @param map
 * @param pageBean
 * @return
 * @throws SQLException 
 * @throws IllegalAccessException 
 * @throws InstantiationException 
 */
public List<TreeNode> listTreeNode(Map<String, String[]> map,PageBean pageBean) throws InstantiationException, IllegalAccessException, SQLException{
List<Map<String, Object>> listMenu = this.listMenu(map, pageBean);
  List<TreeNode> listTreeNode = new ArrayList<TreeNode>();
  this.listMapToListTreeNode(listMenu, listTreeNode);
   return listTreeNode;
   }
/**
 * List<Map<String, Object>>
 * ->{Menuid:001.Menuname:学生管理,children:[]}
 * 接下来需要递归查询子节点的集合存入当前节点
 *  
 * @param map
 * @param pageBean
 * @return
 * @throws InstantiationException
 * @throws IllegalAccessException
 * @throws SQLException
 */
public List<Map<String, Object>> listMenu(Map<String, String[]> map,PageBean pageBean) throws InstantiationException, IllegalAccessException, SQLException{
String sql = "select * from t_easyui_menu where true";
String id = JsonUtils.getParamVal(map, "Menuid");
if(StringUtils.isNotBlank(id)) {
//当前节点的ID当作字节父ID进行查询
sql += " and parentid="+id;
}else {
sql += " and parentid=-1";
}
return super.executeQuery(sql, pageBean);
   }
/**
 * 需要将后台数据库查出来的数据格式转换成前台easyui所识别的数据
 * 
 * @param map
 * @param treeNode
 * @throws SQLException 
 * @throws IllegalAccessException 
 * @throws InstantiationException 
 */
public void mapToTreeNode(Map<String, Object> map,TreeNode treeNode) throws InstantiationException, IllegalAccessException, SQLException {
treeNode.setId(map.get("Menuid").toString());
treeNode.setText(map.get("Menuid").toString());
treeNode.setAttributes(map);
//treeNode.setChildren(children);
Map<String, String[]> childMap = new HashMap<String, String[]>();
childMap.put("Menuid", new String[] {treeNode.getId()});
//查询出当前节点所拥有的子节点的集合
List<Map<String, Object>> listMenu = this.listMenu(childMap, null);
  List<TreeNode> listTreeNode = new ArrayList<TreeNode>();
  this.listMapToListTreeNode(listMenu, listTreeNode);
  treeNode.setChildren(listTreeNode);
}
public void listMapToListTreeNode(List<Map<String, Object>> list,List<TreeNode> listTreeNode) throws InstantiationException, IllegalAccessException, SQLException{
   TreeNode treeNode = null;
for (Map<String, Object> map: list) {
     treeNode = new TreeNode();
     this.mapToTreeNode(map, treeNode);
     listTreeNode.add(treeNode);
     
}
}
   
}
  MenuAction
package com.myy.web;
import java.sql.SQLException;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.myy.dao.MenuDao;
import com.myy.entity.TreeNode;
import com.myy.util.ResponseUtil;
import com.zking.framework.ActionSupport;
public class MenuAction extends ActionSupport {
private MenuDao menuDao = new MenuDao();
public String menuTree(HttpServletRequest req,HttpServletResponse resp) {
     try {
List<TreeNode> listTreeNode = this.menuDao.listTreeNode(req.getParameterMap(), null);
ObjectMapper om = new ObjectMapper();
ResponseUtil.write(resp, om.writeValueAsString(listTreeNode));
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
  配置web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>my_easyui</display-name>
   <filter>
  <filter-name>encodingFiter</filter-name>
  <filter-class>com.myy.util.EncodingFiter</filter-class>
  </filter>
  <filter-mapping>
  <filter-name>encodingFiter</filter-name>
  <url-pattern>/*</url-pattern>
  </filter-mapping>
  
  <servlet>
  <servlet-name>actionServlet</servlet-name>
  <servlet-class>com.zking.framework.ActionServlet</servlet-class>
  </servlet>
  <servlet-mapping>
  <servlet-name>actionServlet</servlet-name>
  <url-pattern>*.action</url-pattern>
  </servlet-mapping>
</web-app>
  创建conf文件下mvc.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<!-- <action path="/regAction" type="test.RegAction">
<forward name="failed" path="/reg.jsp" redirect="false" />
<forward name="success" path="/login.jsp" redirect="true" />
</action> -->
<action path="/menuAction" type="com.myy.web.MenuAction">
</action>
<action path="/userAction" type="com.myy.web.UserAction">
<forward name="index" path="/index.jsp" redirect="false" />
</action>
</config>
  修改js
$(function(){
$('#tt').tree({  
  url:'menuAction.action?methodName=menuTree',
  onClick: function(node){
//  alert(node.attributes.menuURL);//在用户点击的时候显示
  var content = '<iframe scrolling="no" frameborder="0" src="'+node.attributes.menuURL+'" width="99%" height="99%"></iframe>';
  if($("#menuTab").tabs('exists',node.text)){
  $("#menuTab").tab('select',node.text)
  }else{
  $('#menuTab').tabs('add',{  
    title:node.text,  
    content:content,  
    closable:true 
  }); 
  }
  }
}); 
})
  index.jsp主页面
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath }/static/easyui5/themes/default/easyui.css">
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath }/static/easyui5/themes/icon.css">
<script type="text/javascript"
src="${pageContext.request.contextPath }/static/easyui5/jquery.min.js"></script>
<script type="text/javascript"
src="${pageContext.request.contextPath }/static/easyui5/jquery.easyui.min.js"></script>
<script type="text/javascript"
src="${pageContext.request.contextPath }/static/js/index.js"></script>
<title>后台管理主界面</title>
</head>
<!--menuAction.action?methodName=menuTree  -->
<body class="easyui-layout">
<div data-options="region:'north',border:false"
style="height: 60px; background: #B3DFDA; padding: 10px">north
region</div>
<div data-options="region:'west',split:true,title:'West'"
style="width: 150px; padding: 10px;">
左侧菜单栏加载
<ul id="tt">
</ul> 
</div>
<div
data-options="region:'east',split:true,collapsed:true,title:'East'"
style="width: 100px; padding: 10px;">east region</div>
<div data-options="region:'south',border:false"
style="height: 50px; background: #A9FACD; padding: 10px;">south
region</div>
<div data-options="region:'center',title:'Center'">
<div id="menuTab" class="easyui-tabs" style="height:800px;">   
  <div title="Tab1" style="padding:20px;display:none;">   
    默认首页展示内容  
  </div>   
   
</div>  
</div>
</body>
</html>
  运行效果如下
DSC00014.png

  
关注下面的标签,发现更多相似文章