java
1.1关于SpringBoot默认页面访问说明
说明: SpringBoot项目中如果用户采用缺省值访问时,则SpringBoot会采用模板工具API进行页面跳转. 如果使用模板工具API则会动态的拼接视图解析器的前缀和后缀eg:前缀: /WEB-INF/views/后缀 .jsp默认系统欢迎页面的全路径: /WEB-INF/views/index.jsp
1.2树形结构
`<ul class="easyui-tree">
<li>
<span>商品管理</span>
<ul>
<li>商品查询</li>
<li>商品新增</li>
<li>
<span>今日价格</span>
<ul>
<li>猪肉: 10块/斤</li>
<li>牛肉: 30块/斤</li>
<li>羊肉: 24块/斤</li>
</ul>
</li>
</ul>
</li>
</ul>`

1.3 JT页面跳转实现
package com.jt.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class IndexController {
/*@RequestMapping("/index")
public String index(){
return "index";
}*/
/**
* 需求:实现通用页面跳转
* url: /page/item-add 页面:item-add.jsp
* url: /page/item-list 页面:item-list.jsp
* 结论: url中的地址就是跳转的页面信息.
*
* restFul风格实现1:
* 作用: 可以动态的接收url中的参数
* 语法:
* 1.url中的地址如果是参数,则需要使用/分割
* 2.controller方法接收参数时,需要使用{}号方式获取
* 3.如果需要获取参数信息,则使用特定的注解标识
*
* restFul风格实现2: 需要指定访问的请求类型,并且根据特定的类型执行业务
* 请求类型:
* 1.get 执行查询操作
* 2.post 执行入库操作
* 3.put 执行更新操作
* 4.delete 执行删除操作
*/
//@RequestMapping(value = "/page/{moduleName}",method = RequestMethod.GET)
@GetMapping("/page/{moduleName}")
public String module(@PathVariable String moduleName){
return moduleName;
}
}
1.4 UI框架-表格数据展现说明
核心: JS中需要什么数据,则后端程序员就封装什么数据!!
1.5 常见缩写介绍
- POJO 与数据库映射的实体类对象
- VO :数据展现层的对象 主要与页面JS进行数据交互的媒介
EasyUI表格定义
<div>
定义表格,并且通过url访问json数据, fitColumns:true表示自动适应,singleSelect:true 表示选中单个
<table class="easyui-datagrid" style="width:500px;height:300px"
data-options="url:'datagrid_data.json',method:'get',
fitColumns:true,singleSelect:false,pagination:true">
<thead>
<tr>
<th data-options="field:'code',width:100">Code</th>
<th data-options="field:'name',width:100">Name</th>
<th data-options="field:'price',width:100,align:'right'">Price</th>
</tr>
</thead>
</table>
</div>
1.6 表格数据返回格式说明
{
"total":2000,
"rows":[
{"code":"A","name":"果汁","price":"20"},
{"code":"B","name":"汉堡","price":"30"},
{"code":"C","name":"鸡柳","price":"40"},
{"code":"D","name":"可乐","price":"50"},
{"code":"E","name":"薯条","price":"10"},
{"code":"F","name":"麦旋风","price":"20"},
{"code":"G","name":"套餐","price":"100"}
]
}
1.7 根据返回值 定义VO对象
1.8 JSON结构说明
1.8.1 何为JSON
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。
1.8.2 JSON格式之对象格式
对象(object) 是一个无序的“‘名称/值’对”集合。一个对象以“{”(左括号)开始,“}”(右括号)结束。每个“名称”后跟一个“:”(冒号);“‘名称/值’ 对”之间使用“,”(逗号)分隔。eg: {“id”:“100”,“name”:“tomcat猫”}
1.8.3 JSON格式之数组格式
eg: [“1”,“玩”,“学习”]
1.8.4 JSON格式之嵌套格式
例子:
["敲代码","打游戏",[1,2,3,4,5],{"id":100,"name":"tomcat猫","hobby":["吃东西","打豆豆","玩联盟"]}]
2 Ajax总结
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>您好Springboot</title>
<!-- 1.导入函数类库 -->
<script src="../js/jquery-3.4.1.min.js"></script>
<script type="text/javascript">
//让JS页面加载完成,之后执行JS
$(function(){
/*
需求: 利用ajax方式动态获取user数据信息
请求网址: /findAjax
知识点:
返回值类型: 可以根据数据自动匹配类型,所以可以不写.
1. $.get(url地址,传递的参数,回调函数,返回值类型)
2. $.post(.....)
3. $.getJSON(.....)
*/
$.get("/findAjax2",function(result){
//1.可以使用js中的for循环
/* for(let i=0; i<result.length;i++){
} */
/* for(let index in result){
console.log(index);
} */
for(let user of result){
let id = user.id;
let name = user.name;
let age = user.age;
let sex = user.sex;
let tr = "<tr align='center'><td>"+id+"</td><td>"+name+"</td><td>"+age+"</td><td>"+sex+"</td></tr>"
$("#tab1").append(tr);
}
})
/*
原生ajax写法 $.ajax变形 jQuery的编程特点: 函数式编程
需求:传递Id=100,name=喵
参数写法1:data : {"id":100,"name":"喵"}
参数写法2:data: "id=100&name=喵",
*/
$.ajax({
url : "/findAjax",
type : "get", //method: "post"
//data : {"id":100,"name":"喵"}
data: "id=100&name=喵",
success: function(result){
for(let user of result){
let id = user.id;
let name = user.name;
let age = user.age;
let sex = user.sex;
let tr = "<tr align='center'><td>"+id+"</td><td>"+name+"</td><td>"+age+"</td><td>"+sex+"</td></tr>"
$("#tab1").append(tr);
}
},
error: function(result){
alert("请求失败,请联系管理员!!!")
},
cache: false, //默认值 true
async: false //默认值 true 异步操作 false同步操作
});
})
</script>
</head>
<body>
<table id="tab1" border="1px" width="65%" align="center">
<tr>
<td colspan="6" align="center"><h3>学生信息</h3></td>
</tr>
<tr>
<th>编号</th>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
</table>
</body>
</html>
转载自:https://segmentfault.com/a/1190000037447642