MacOS下VUEJS快速简单学习入门

2020-05-1121:13:11WEB前端开发Comments1,525 views字数 34190阅读模式

VueJs概述与快速入门

学习之前假设你已了解关于 HTML、CSS 和 JavaScript 的中级知识。如果你刚开始学习前端开发,将框架作为你的第一步可能不是最好的主意——掌握好基础知识再来吧!之前有其它框架的使用经验会有帮助,但这不是必需的。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

VueJs介绍

是一个构建数据驱动的 web 界面的渐进式框架。 的目标是通过尽可能简单的 API 实现响应的数据绑定和组合的视图组件。它不仅易于上手,还便于与第三方库或既有项目整合。
官网文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

MVVM模式

MVVM是Model-View-ViewModel的简写。它本质上就是MVC 的改进版。MVVM 就是将其中的View 的状态和行为抽象化,让我们将视图 UI 和业务逻辑分开。MVVM模式和MVC模式一样,主要目的是分离视图(View)和模型(Model)。 是一个提供了 MVVM 风格的双向数据绑定的 Javascript 库,专注于View 层。它的核心是 MVVM 中的 VM,也就是 ViewModel。 ViewModel负责连接 View 和 Model,保证视图和数据的一致性,这种轻量级的架构让前端开发更加高效、便捷。
MacOS下VUEJS快速简单学习入门文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

VueJS 快速入门

环境搭建

打开IDEA创建新的工程
MacOS下VUEJS快速简单学习入门
使用Maven骨架创建工程
MacOS下VUEJS快速简单学习入门
填写工程名称和存放目录
MacOS下VUEJS快速简单学习入门
Finish
MacOS下VUEJS快速简单学习入门
修改Pom文件文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<?xml version="" encoding="UTF-8"?>

<project xmlns="" xmlns:xsi=""
  xsi:schemaLocation=" http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId></groupId>
  <artifactId>vue</artifactId>
  <version>-SNAPSHOT</version>
  <packaging>war</packaging>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
</project>

补全工程目录
MacOS下VUEJS快速简单学习入门
把vuejs文件导入到js目录中,页面导入到webapp下,初期环境准备完毕
MacOS下VUEJS快速简单学习入门
编写html文件快速入门文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<details>
<summary>快速入门html代码</summary>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>快速开始</title>
    <script src="js/"></script>
</head>
<body>
<div>{{message}}</div>
<script>
    new Vue({
        el:'#app',//表示当前vue对象接管了id叫app的div区域
        data:{
            message:'hello vuejs'//注意不要写分号结尾
        }
    });
</script>
</body>
</html>
</details>

配置tomcat本地服务器并启动文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

  1. MacOS下VUEJS快速简单学习入门
  2. MacOS下VUEJS快速简单学习入门
  3. MacOS下VUEJS快速简单学习入门
  4. MacOS下VUEJS快速简单学习入门
  5. MacOS下VUEJS快速简单学习入门
    6.MacOS下VUEJS快速简单学习入门
    之后打开浏览器地址栏为http://localhost:8181/vue/效果为(注意地址栏要修改为自己写的快速入门的html文件,因为tomcat默认打开)
    MacOS下VUEJS快速简单学习入门
插值表达式

数据绑定最常见的形式就是使用“Mustache”语法 (双大括号) 的文本插值,Mustache 标签将会被替代为对应数据对象上属性的值。无论何时,绑定的数据对象上属性发生了改变,插值处的内容都会更新。v
vue.js 都提供了完全的 JavaScript 表达式支持。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

{{ number + 1 }}
{{ ok ? 'YES' : 'NO'}}

这些表达式会在所属 Vue 实例的数据作用域下作为 JavaScript 被解析。有个限制就是,每个绑定都只能包含单个表达式,所以下面的例子都不会生效。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!-- 这是语句,不是表达式 -->
{{ var a = 1 }}
<!-- 流控制也不会生效,请使用三元表达式 -->
{{ if (ok) { return message } }}
练习代码
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>快速入门</title>
    <script src="js/"></script>
</head>
<body>
<div>
	{{ message }}
</div>
</body>
<script>
    //view model
    new Vue({
        el: "#app",
        data:{
        message:"Hello Vue!"
        }
    });
</script>
</html>

VueJS 常用系统指令

v-on

可以用v-on指令监听 DOM 事件,并在触发时运行一些 JavaScript 代码文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

v-on:click

练习文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-on:click</title>
		<script src="js/"></script>
	</head>
	<body>
		<div>
			{{message}}  
			<button v-on:click="fun('这是使用vue绑定的单击事件')">vue的onclick</button>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:'#app',
			data:{
				message:'Hello world'
			},
			methods:{
				fun:function (msg) {
					this.message = msg;
				}
			}
		});
	</script>
</html> 
v-on:keydown

练习文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>

	<head>
		<meta charset="utf-8" />
		<title>v-on:keydown</title>
		<script src="js/"></script>
	</head>

	<body>
		<div>
			<input type="text" v-on:keydown="fun($event)">
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:"#app",
			methods:{
				fun:function(event){
					//alert();
					var keyCode = ;
					if(!(keyCode >= 48 && keyCode <= 57)) {
						//2.阻止默认行为执行
						();
					}
				}
			}
		})

		function showKeyCode(){
			var code = ;
			alert(code);
		}
	</script>
</html>
v-on:mouseover

练习文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-on:mouseover</title>
		<style>
			#div {
				background-color: red;
				width: 200px;
				height: 200px;
			}
		</style>
		<script src="js/"></script>
	</head>

	<body>
		<div>
			<div @mouseover="fun1">
				<textarea @mouseover="fun2($event)">这是一个文件域</textarea>
			</div>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:'#app',
			methods:{
				fun1:function () {
					alert("div");
				},
				fun2:function (event) {
					alert("textarea");
					();//阻止传播到div
				}
			}
		})
	</script>
</html>
事件修饰符

为 v-on 提供了事件修饰符来处理 DOM 事件细节,如:() 或()。
通过由点(.)表示的指令后缀来调用修饰符。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

  • .stop
  • .prevent
  • .capture
  • .self
  • .once
    练习
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-on:事件修饰符</title>

		<script src="js/"></script>
	</head>
	<body>
		<div>
<!--			加入.prevent阻止提交-->
			<form  v-on:submit.prevent action="">
				<input type="submit" value="Go"/>
			</form>
//不知道为什么.stop没有作用
			<div v-on:click="fun">
				<a v-on:click.stop href="">baidu</a>
			</div>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:'#app',
			methods:{
				fun:function(){
					alert("prevent");
				}
			}
		});
	</script>
</html>
按键修饰符

Vue 允许为 v-on 在监听键盘事件时添加按键修饰符
全部的按键别名:文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

  • .enter
  • .tab
  • .delete (捕获 "删除" 和 "退格" 键)
  • .esc
  • .space
  • .up
  • .down
  • .left
  • .right
  • .ctrl
  • .alt
  • .shift
  • .meta
    练习
    不知道为什么没有效果
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>v-on:按键修饰符</title>
    <script src="js/"></script>
</head>
<body>
<div>
<!--	@等于v-on:-->
    <input type="text" @"fun"/>
</div>
</body>
<script>
    //view model
	new Vue({
		el:'#app',
		methods:{
			fun:function () {
				alert("aaa");
			}
		}
	})
</script>
</html>

v-text与v-html

v-text:将内容原封不动显示
v-html:会将标签解析
练习文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-text与v-html</title>
		<script src="js/"></script>
	</head>
	<body>
		<div>
			<div v-text="message"></div>
			<div v-html="message"></div>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:"#app",
			data:{
				message:"<h1>hello vue!</h1>"
			}
		})
	</script>
</html>

v-model

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-model</title>
		<script src="js/"></script>
	</head>
	<body>
		<div>
			用户名:<input type="text" v-model=""/><br/>
			密码:<input type="text" v-model=""><br/>
			<input type="button" @click="fun" value="按钮"> 
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:"#app",
			data:{
				user:{
					username:"test",
					password:"123"
				}
			},
			methods:{
				fun:function () {
					this.="java";
					this.="1234";
				}
			}
		})
	</script>
</html>

v-bind

插值语法不能作用在 HTML 特性上,遇到这种情况应该使用 v-bind指令文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-text与v-html在v-bind上的使用</title>
		<script src="js/"></script>
	</head>
	<body>
		<div>
			<font size="5" v-bind:color="ys1">Java</font>
<!--			v-bind等于:-->
			<font siez="5" :color="ys2">web</font>
			<hr/>
			<a :={href:"/index/"+id}>baidu</a>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:"#app",
			data:{
				ys1:"red",
				ys2:"green",
				id:1
			}
		})
	</script>
</html>

v-for

(值,键):值在前面,键在后面
操作array文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>v-for遍历数组</title>
    <script src="js/"></script>
</head>
<body>
<div>
    <ul>
        <li v-for="(value,index) in arr"
        >{{value}} and {{index}}
        </li>
    </ul>
</div>
</body>
<script>
    //view model
	new Vue({
		el:"#app",
		data:{
			arr:['a', 'b', 'c', 'd']
		}
	})
</script>
</html>

操作对象文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-for遍历对象</title>
		<script src="js/"></script>
	</head>
	<body>
		<div>
			<ul>
				<li v-for="(value,key) in product">
					{{key}} and {{value}}
				</li>
			</ul>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:"#app",
			data:{
				product:{id:1, name:"phone", price:1000}
			}
		});
	</script>
</html>

操作对象数组文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-for遍历对象</title>
		<script src="js/"></script>
	</head>

	<body>
		<div>
			<table border="1">
				<tr>
					<td>序号</td>
					<td>编号</td>
					<td>名称</td>
					<td>价格</td>
				</tr>
				<tr v-for="(p,index) in products">
					<td>{{index}}</td>
					<td>{{}}</td>
					<td>{{}}</td>
					<td>{{}}</td>
				</tr>
			</table>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:"#app",
			data:{
				products:[
					{
						id: '001',
						name: "电视机",
						price: 1000},
					{
						id: "002",
						name: "洗衣机",
						price: 2000}
				]
			}
		})
	</script>
</html>

v-if与v-show

v-if是根据表达式的值来决定是否渲染元素
v-show是根据表达式的值来切换元素的display css属性文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>v-if与v-show</title>
		<script src="js/"></script>
	</head>
	<body>
		<div>
			<span v-if="flag">hello java</span>
			<span v-show="flag">helle vue</span>
			<button @click="fun">change</button>
		</div>
	</body>
	<script>
		//view model
		new Vue({
			el:"#app",
			data:{
				flag:true
			},
			methods:{
				fun:function () {
					this.flag = !
				}
			}
		})
	</script>
</html>

VueJS生命周期

每个 Vue 实例在被创建之前都要经过一系列的初始化过程.
MacOS下VUEJS快速简单学习入门
vue在生命周期中有这些状态,beforeCreate,created,beforeMount,mounted,beforeUpdate,updated,beforeDestroy,destroyed。Vue在实例化的过程中,会调用这些生命周期的钩子,给我们提供了执行自定义逻辑的机会。那么,在这些vue钩子中,vue实例到底执行了那些操作,我们先看下面执行的例子文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>vuejs生命周期</title>
		<script src="js/"></script>
	</head>
	<body>
		<div>
			{{message}}
		</div>
	</body>
	<script>
		var vm = new Vue({
			el: "#app",
			data: {
				message: 'hello world'
			},
			beforeCreate: function() {
				(this);
				showData('创建vue实例前', this);
			},
			created: function() {
				showData('创建vue实例后', this);
			},
			beforeMount: function() {
				showData('挂载到dom前', this);
			},
			mounted: function() {
				showData('挂载到dom后', this);
			},
			beforeUpdate: function() {
				showData('数据变化更新前', this);
			},
			updated: function() {
				showData('数据变化更新后', this);
			},
			beforeDestroy: function() {
				vm.test = "3333";
				showData('vue实例销毁前', this);
			},
			destroyed: function() {
				showData('vue实例销毁后', this);
			}
		});
		function realDom() {
			('真实dom结构:' + ('app').innerHTML);
		}
		function showData(process, obj) {
			(process);
			('data 数据:' + )
			('挂载的对象:')
			(obj.$el)
			realDom();
			('------------------')
			('------------------')
		}
		//vm.message = "good...";
		vm.$destroy(); 
	</script>
</html>

vue对象初始化过程中,会执行到beforeCreate,created,beforeMount,mounted 这几个钩子的内容文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

  • beforeCreate :数据还没有监听,没有绑定到vue对象实例,同时也没有挂载对象
  • created :数据已经绑定到了对象实例,但是还没有挂载对象
  • beforeMount: 模板已经编译好了,根据数据和模板已经生成了对应的元素对象,将数据对象关联到了对象的el属性,el属性是一个HTMLElement对象,也就是这个阶段,vue实例通过原生的createElement等方法来创建这个html片段,准备注入到我们vue实例指明的el属性所对应的挂载点
  • mounted:将el的内容挂载到了el,相当于我们在jquery执行了(el).html(el),生成页面上真正的dom,上面我们就会发现dom的元素和我们el的元素是一致的。在此之后,我们能够用方法来获取到el元素下的dom对象,并进行各种操作
  • 当我们的data发生改变时,会调用beforeUpdate和updated方法
  • beforeUpdate :数据更新到dom之前,我们可以看到$el对象已经修改,但是我们页面上dom的数据还没有发生改变
  • updated: dom结构会通过虚拟dom的原则,找到需要更新页面dom结构的最小路径,将改变更新到dom上面,完成更新
  • beforeDestroy,destroed :实例的销毁,vue实例还是存在的,只是解绑了事件的监听还有watcher对象数据与view的绑定,即数据驱动

VueJS ajax

vue-resource

vue-resource是的插件提供了使用XMLHttpRequest或JSONP进行Web请求和处理响应的服务。当vue更新到之后,作者就宣告不再对vue-resource更新,而是推荐的axios,在这里大家了解一下vue-resource就可以。vue-resource的github: https://github.com/pagekit/vue-resource文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

axios

Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 中
axios的github:文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

引入axios

首先就是引入axios,如果你使用es6,只需要安装axios模块文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

import axios from 'axios';
//安装方法
npm install axios
//或
bower install axios

当然也可以用script引入文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<script src=""></script>

也可以下载到本地,引入本地的js文件文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

get请求
//通过给定的ID来发送请求
('/user?ID=12345')  
.then(function(response){ //得到的响应   
		(response);  
}) 
.catch(function(err){//出错    
		(err);  
});
//以上请求也可以通过这种方式来发送
('/user',{params:{ID:12345}})
.then(function(response){  
		(response);
})
.catch(function(err){  
		(err);
});
post请求
('/user',{  
	firstName:'Fred',  
	lastName:'Flintstone'
})
.then(function(res){  
	(res);
})
.catch(function(err){  
	(err);
})

为方便起见,为所有支持的请求方法提供了别名
(config)
(url[, config])
(url[, config])
(url[, config])
(url[, data[, config]])
(url[, data[, config]])
(url[, data[, config]])文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

综合案例

案例需求

完成用户的查询与修改操作文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

数据库设置与表结构

创建数据库和插入数据文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `age` int(11) DEFAULT NULL,
  `username` varchar(20) DEFAULT NULL,
  `PASSWORD` varchar(50) DEFAULT NULL,
  `email` varchar(50) DEFAULT NULL,
  `sex` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

INSERT INTO `user` VALUES ('1', '33', '张老师', '123', 'zzz@', '男 ');
INSERT INTO `user` VALUES ('2', '31', '刘老师', '123', 'lll@', '女');
INSERT INTO `user` VALUES ('3', '17', '赵工', '213', 'zg@', '女');
INSERT INTO `user` VALUES ('4', '40', '高管', '213', 'gg@', 'female');
INSERT INTO `user` VALUES ('5', '28', '李总', '312', 'lz@', 'male');
INSERT INTO `user` VALUES ('6', '34', '王董', '312', 'wd@', 'male');
INSERT INTO `user` VALUES ('7', '55', '孙老板', '4321', 'slb@', '男');
INSERT INTO `user` VALUES ('8', '19', '陈秘书', '4321', 'cms@', '女');

服务器端

环境搭建和之前的快速入门基本一样

填入配置文件和页面文件
MacOS下VUEJS快速简单学习入门
MacOS下VUEJS快速简单学习入门文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

配置文件

resources/文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<?xml version="" encoding="UTF-8"?>
<beans xmlns=""
       xmlns:xsi=""
       xmlns:aop=""
       xmlns:tx=""
       xmlns:context=""
       xsi:schemaLocation=" /spring-beans.xsd
                             /spring-tx.xsd
                             /spring-aop.xsd
                             /spring-context.xsd">
    <!-- 配置 spring 创建容器时要扫描的包 -->
    <context:component-scan base-package="">
        <!--制定扫包规则,不扫描@Controller 注解的 JAVA 类,其他的还是要扫描 -->
        <context:exclude-filter type="annotation"
                                expression=""/>
    </context:component-scan>
    <!-- 加载配置文件 -->
    <context:property-placeholder location="classpath:"/>
    <!-- 配置 MyBatis 的 Session 工厂 -->
    <bean class="">
        <!-- 数据库连接池 -->
        <property name="dataSource" ref="dataSource"/>
    </bean>
    <!-- 配置数据源 -->
    <bean class="">
        <property name="driverClass" value="${}"></property>
        <property name="jdbcUrl" value="${}"></property>
        <property name="user" value="${}"></property>
        <property name="password" value="${}"></property>
    </bean>
    <!-- 配置 Mapper 扫描器 -->
    <bean class="">
        <property name="basePackage" value=".dao"/>
    </bean>
    <tx:annotation-driven/>
    <!-- 配置事务管理器 -->
    <bean class="">
        <property name="dataSource" ref="dataSource"/>
    </bean>
    <!-- 配置事务的通知 -->
    <tx:advice transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED" read-only="false"/>
            <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
        </tx:attributes>
    </tx:advice>
    <!-- 配置aop -->
    <aop:config>
        <aop:pointcut expression="execution(* .service.impl.*.*(..))"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="pt1"/>
    </aop:config>
</beans>

resources/springmvc.xml文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<?xml version="" encoding="UTF-8"?>
<beans xmlns=""
       xmlns:mvc=""
       xmlns:context=""
       xmlns:xsi=""
       xsi:schemaLocation="
/spring-beans.xsd

/spring-mvc.xsd

/spring-context.xsd">
    <!-- 配置创建 spring 容器要扫描的包 -->
    <context:component-scan base-package="">
        <!-- 制定扫包规则 ,只扫描使用@Controller 注解的 JAVA 类 -->
        <context:include-filter type="annotation"
                                expression=""/>
    </context:component-scan>
    <mvc:annotation-driven></mvc:annotation-driven>
</beans>

resources/文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

=com.mysql.jdbc.Driver
=jdbc:mysql://localhost:3306/vue
=root
=wangxinxing666

WEB-INF/web.xml文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<?xml version="" encoding="UTF-8"?>
<web-app xmlns:xsi="" xmlns="" xsi:schemaLocation=" /web-app_2_5.xsd" version="">
  <display-name></display-name>

  <!-- 手动指定 spring 配置文件位置 -->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:</param-value>
  </context-param>
  <!-- 配置 spring 提供的监听器,用于启动服务时加载容器 。该间监听器只能加载 WEB-INF 目录中名称为  的配置文件 -->
  <listener>
    <listener-class>
      org.springframework.web.context.ContextLoaderListener
    </listener-class>
  </listener>
  <!-- 配置 spring mvc 的核心控制器 -->
  <servlet>
    <servlet-name>springmvcDispatcherServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <!-- 配置初始化参数,用于读取 springmvc 的配置文件 -->
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springmvc.xml</param-value>
    </init-param>
    <!-- 配置 servlet 的对象的创建时间点:应用加载时创建。取值只能是非 0 正整数,表示启动顺 序 -->
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>springmvcDispatcherServlet</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
  <!-- 配置 springMVC 编码过滤器 -->
  <filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <!-- 设置过滤器中的属性值 -->
    <init-param>
      <param-name>encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>
    <!-- 启动过滤器 -->
    <init-param>
      <param-name>forceEncoding</param-name>
      <param-value>true</param-value>
    </init-param>
  </filter>
  <!-- 过滤所有请求 -->
  <filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file></welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>
编写User类

目录结构
MacOS下VUEJS快速简单学习入门文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

package .domain;

import java.io.Serializable;

/**
 * @author HackerStar
 * @create 2020-05-05 11:02
 */
public class User implements Serializable {
    private Integer id;
    private Integer age;
    private String username;
    private String password;
    private String email;
    private String sex;

    @Override
    public String toString() {
        return "User{" +
                "id=" + id +
                ", age=" + age +
                ", username='" + username + '\'' +
                ", password='" + password + '\'' +
                ", email='" + email + '\'' +
                ", sex='" + sex + '\'' +
                '}';
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }
}
Controller
package .web.controller;

import .domain.User;
import .service.IUserService;
import org.springframework.beans.factory.annotation.Autowired;
import ;
import org.springframework.web.bind.annotation.RequestMapping;

import java.util.List;

/**
 * @author HackerStar
 * @create 2020-05-05 11:28
 */
@Controller
@RequestMapping("/user")
public class UserController {
    @Autowired
    private IUserService userService;

    @RequestMapping("/findAll")
    public List<User> findAll() {
        return ();
    }

    @RequestMapping("/findById")
    public User findById(Integer id) {
        return (id);
    }

    @RequestMapping("/updateUser")
    public void updateUser(User user) {
        (user);
    }
}
Service
package .service.impl;

import .dao.IUserDao;
import .domain.User;
import .service.IUserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * @author HackerStar
 * @create 2020-05-05 11:35
 */
@Service
public class UserServiceImpl implements IUserService {
    @Autowired
    private IUserDao userDao;

    @Override
    public List<User> findAll() {
        return userDao.findAll();
    }

    @Override
    public User findById(Integer userID) {
        return userDao.findById(userID);
    }

    @Override
    public void updateUser(User user) {
        (user);
    }
}
package .service;

import .domain.User;

import java.util.List;

/**
 * @author HackerStar
 * @create 2020-05-05 11:06
 */
public interface IUserService {
    List<User> findAll();

    User findById(Integer userID);

    void updateUser(User user);
}
Dao
package .dao;

import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
import .domain.User;

import java.util.List;

/**
 * @author HackerStar
 * @create 2020-05-05 11:37
 */
public interface IUserDao {
    @Select("select * from user")
    List<User> findAll();

    @Select("select * from user where id = #{userId}")
    User findById(Integer id);

    @Update("update user set username=#{username}, password=#{password},age=#{age},sex=#{sex},email=#{email} where id=#{id}")
    void updateUser(User user);
}
编写测试类
package .test;

import .domain.User;
import .service.IUserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import java.util.List;

/**
 * @author HackerStar
 * @create 2020-05-05 11:43
 */
@RunWith()
@ContextConfiguration(locations = "classpath:")
public class UserTest {
    @Autowired
    private IUserService userService;

    @Test
    public void testFindAll(){
        List<User> users = ();
        (users);
    }

    @Test
    public void testFindById(){
        User user = (1);
        (user);
    }

    @Test
    public void testUpdateUser(){
        User user = (1);
        ("张老师");
        (user);
    }
}

客户端

这里把主要的精力放在js的编写文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

页面

修改中资源位置,比如本项目定义的tomcat目录为/vue,各个插件获取时需要到/vue目录下来获取相应的资源,其次在实现findById时,需要开启modal,之后获取数据(使用了findById方法)在小页面获取到原来的信息,之后可以修改内容在点击修改即可修改数据库的内容,此处需要注意定义'修改'标签那里的@click="updateUser"中@click的名字要和中需要实现的功能名字保持一致,其次就是编写时,需要把功能方法先搭建起来(就是只有方法名,内容先不用填写),否则实现了一个功能,虽然代码没错,但是浏览器的console会产生‘没有其他方法’的异常文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

<!DOCTYPE html>
<html>

<head>
    <!-- 页面meta -->
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <title>数据 - AdminLTE2定制版</title>
    <meta name="description" content="AdminLTE2定制版">
    <meta name="keywords" content="AdminLTE2定制版">
    <meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" name="viewport">

    <script src=""></script>
    <script src=""></script>

    <link rel="stylesheet" href="/vue/plugins/bootstrap/css/">
    <link rel="stylesheet" href="/vue/plugins/font-awesome/css/">
    <link rel="stylesheet" href="/vue/plugins/ionicons/css/">
    <link rel="stylesheet" href="/vue/plugins/iCheck/square/">
    <link rel="stylesheet" href="/vue/plugins/morris/">
    <link rel="stylesheet" href="/vue/plugins/jvectormap/">
    <link rel="stylesheet" href="/vue/plugins/datepicker/">
    <link rel="stylesheet" href="/vue/plugins/daterangepicker/">
    <link rel="stylesheet" href="/vue/plugins/bootstrap-wysihtml5/">
    <link rel="stylesheet" href="/vue/plugins/datatables/">
    <link rel="stylesheet" href="/vue/plugins/treeTable/">
    <link rel="stylesheet" href="/vue/plugins/treeTable/">
    <link rel="stylesheet" href="/vue/plugins/select2/">
    <link rel="stylesheet" href="/vue/plugins/colorpicker/">
    <link rel="stylesheet" href="/vue/plugins/bootstrap-markdown/css/">
    <link rel="stylesheet" href="/vue/plugins/adminLTE/css/">
    <link rel="stylesheet" href="/vue/plugins/adminLTE/css/skins/">
    <link rel="stylesheet" href="/vue/css/">
    <link rel="stylesheet" href="/vue/plugins/ionslider/">
    <link rel="stylesheet" href="/vue/plugins/ionslider/">
    <link rel="stylesheet" href="/vue/plugins/bootstrap-slider/">
    <link rel="stylesheet" href="/vue/plugins/bootstrap-datetimepicker/">
</head>

<body class="hold-transition skin-purple sidebar-mini">

<div class="wrapper">
    <!-- 页面头部 -->
    <header class="main-header">
        <!-- Logo -->
        <a href="" class="logo">
            <!-- mini logo for sidebar mini 50x50 pixels -->
            <span class="logo-mini"><b>数据</b></span>
            <!-- logo for regular state and mobile devices -->
            <span class="logo-lg"><b>数据</b>后台管理</span>
        </a>
        <!-- Header Navbar: style can be found in header.less -->
        <nav class="navbar navbar-static-top">
            <!-- Sidebar toggle button-->
            <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
                <span class="sr-only">Toggle navigation</span>
            </a>
            <div class="navbar-custom-menu">
                <ul class="nav navbar-nav">
                    <!-- Messages: style can be found in dropdown.less-->
                    <li class="dropdown messages-menu">
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                            <i class="fa fa-envelope-o"></i>
                            <span class="label label-success">4</span>
                        </a>
                        <ul class="dropdown-menu">
                            <li class="header">你有4个邮件</li>
                            <li>
                                <!-- inner menu: contains the actual data -->
                                <ul class="menu">
                                    <li>
                                        <!-- start message -->
                                        <a href="#">
                                            <div class="pull-left">
                                                <img src="/vue/img/" class="img-circle"
                                                    >
                                            </div>
                                            <h4>
                                                系统消息
                                                <small><i class="fa fa-clock-o"></i> 5 分钟前</small>
                                            </h4>
                                            <p>欢迎登录系统?</p>
                                        </a>
                                    </li>
                                    <!-- end message -->
                                    <li>
                                        <a href="#">
                                            <div class="pull-left">
                                                <img src="/vue/img/" class="img-circle"
                                                    >
                                            </div>
                                            <h4>
                                                团队消息
                                                <small><i class="fa fa-clock-o"></i> 2 小时前</small>
                                            </h4>
                                            <p>你有新的任务了</p>
                                        </a>
                                    </li>
                                    <li>
                                        <a href="#">
                                            <div class="pull-left">
                                                <img src="/vue/img/" class="img-circle"
                                                    >
                                            </div>
                                            <h4>
                                                Developers
                                                <small><i class="fa fa-clock-o"></i> Today</small>
                                            </h4>
                                            <p>Why not buy a new awesome theme?</p>
                                        </a>
                                    </li>
                                    <li>
                                        <a href="#">
                                            <div class="pull-left">
                                                <img src="/vue/img/" class="img-circle"
                                                    >
                                            </div>
                                            <h4>
                                                Sales Department
                                                <small><i class="fa fa-clock-o"></i> Yesterday</small>
                                            </h4>
                                            <p>Why not buy a new awesome theme?</p>
                                        </a>
                                    </li>
                                    <li>
                                        <a href="#">
                                            <div class="pull-left">
                                                <img src="/vue/img/" class="img-circle"
                                                    >
                                            </div>
                                            <h4>
                                                Reviewers
                                                <small><i class="fa fa-clock-o"></i> 2 days</small>
                                            </h4>
                                            <p>Why not buy a new awesome theme?</p>
                                        </a>
                                    </li>
                                </ul>
                            </li>
                            <li class="footer"><a href="#">See All Messages</a></li>
                        </ul>
                    </li>
                    <!-- Notifications: style can be found in dropdown.less -->
                    <li class="dropdown notifications-menu">
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                            <i class="fa fa-bell-o"></i>
                            <span class="label label-warning">10</span>
                        </a>
                        <ul class="dropdown-menu">
                            <li class="header">你有10个新消息</li>
                            <li>
                                <!-- inner menu: contains the actual data -->
                                <ul class="menu">
                                    <li>
                                        <a href="#">
                                            <i class="fa fa-users text-aqua"></i> 5 new members joined today
                                        </a>
                                    </li>
                                    <li>
                                        <a href="#">
                                            <i class="fa fa-warning text-yellow"></i> Very long description here that
                                            may not
                                            fit into the page and may cause design problems
                                        </a>
                                    </li>
                                    <li>
                                        <a href="#">
                                            <i class="fa fa-users text-red"></i> 5 new members joined
                                        </a>
                                    </li>
                                    <li>
                                        <a href="#">
                                            <i class="fa fa-shopping-cart text-green"></i> 25 sales made
                                        </a>
                                    </li>
                                    <li>
                                        <a href="#">
                                            <i class="fa fa-user text-red"></i> You changed your username
                                        </a>
                                    </li>
                                </ul>
                            </li>
                            <li class="footer"><a href="#">View all</a></li>
                        </ul>
                    </li>
                    <!-- Tasks: style can be found in dropdown.less -->
                    <li class="dropdown tasks-menu">
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                            <i class="fa fa-flag-o"></i>
                            <span class="label label-danger">9</span>
                        </a>
                        <ul class="dropdown-menu">
                            <li class="header">你有9个新任务</li>
                            <li>
                                <!-- inner menu: contains the actual data -->
                                <ul class="menu">
                                    <li>
                                        <!-- Task item -->
                                        <a href="#">
                                            <h3>
                                                Design some buttons
                                                <small class="pull-right">20%</small>
                                            </h3>
                                            <div class="progress xs">
                                                <div class="progress-bar progress-bar-aqua" style="width: 20%"
                                                     role="progressbar" aria-valuenow="20" aria-valuemin="0"
                                                     aria-valuemax="100">
                                                    <span class="sr-only">20% Complete</span>
                                                </div>
                                            </div>
                                        </a>
                                    </li>
                                    <!-- end task item -->
                                    <li>
                                        <!-- Task item -->
                                        <a href="#">
                                            <h3>
                                                Create a nice theme
                                                <small class="pull-right">40%</small>
                                            </h3>
                                            <div class="progress xs">
                                                <div class="progress-bar progress-bar-green" style="width: 40%"
                                                     role="progressbar" aria-valuenow="20" aria-valuemin="0"
                                                     aria-valuemax="100">
                                                    <span class="sr-only">40% Complete</span>
                                                </div>
                                            </div>
                                        </a>
                                    </li>
                                    <!-- end task item -->
                                    <li>
                                        <!-- Task item -->
                                        <a href="#">
                                            <h3>
                                                Some task I need to do
                                                <small class="pull-right">60%</small>
                                            </h3>
                                            <div class="progress xs">
                                                <div class="progress-bar progress-bar-red" style="width: 60%"
                                                     role="progressbar" aria-valuenow="20" aria-valuemin="0"
                                                     aria-valuemax="100">
                                                    <span class="sr-only">60% Complete</span>
                                                </div>
                                            </div>
                                        </a>
                                    </li>
                                    <!-- end task item -->
                                    <li>
                                        <!-- Task item -->
                                        <a href="#">
                                            <h3>
                                                Make beautiful transitions
                                                <small class="pull-right">80%</small>
                                            </h3>
                                            <div class="progress xs">
                                                <div class="progress-bar progress-bar-yellow" style="width: 80%"
                                                     role="progressbar" aria-valuenow="20" aria-valuemin="0"
                                                     aria-valuemax="100">
                                                    <span class="sr-only">80% Complete</span>
                                                </div>
                                            </div>
                                        </a>
                                    </li>
                                    <!-- end task item -->
                                </ul>
                            </li>
                            <li class="footer">
                                <a href="#">View all tasks</a>
                            </li>
                        </ul>
                    </li>
                    <!-- User Account: style can be found in dropdown.less -->
                    <li class="dropdown user user-menu">
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                            <img src="/vue/img/" class="user-image">
                            <span class="hidden-xs">张猿猿</span>
                        </a>
                        <ul class="dropdown-menu">
                            <!-- User image -->
                            <li class="user-header">
                                <img src="/vue/img/" class="img-circle">

                                <p>
                                    张猿猿 - 数据管理员
                                    <small>最后登录 11:20AM</small>
                                </p>
                            </li>

                            <!-- Menu Footer-->
                            <li class="user-footer">
                                <div class="pull-left">
                                    <a href="#" class="btn btn-default btn-flat">修改密码</a>
                                </div>
                                <div class="pull-right">
                                    <a href="#" class="btn btn-default btn-flat">注销</a>
                                </div>
                            </li>
                        </ul>
                    </li>

                </ul>
            </div>
        </nav>
    </header>
    <!-- 页面头部 /-->

    <!-- 导航侧栏 -->
    <aside class="main-sidebar">
        <!-- sidebar: style can be found in sidebar.less -->
        <section class="sidebar">
            <!-- Sidebar user panel -->
            <div class="user-panel">
                <div class="pull-left image">
                    <img src="/vue/img/" class="img-circle">
                </div>
                <div class="pull-left info">
                    <p>张猿猿</p>
                    <a href="#"><i class="fa fa-circle text-success"></i> 在线</a>
                </div>
            </div>
            <!-- search form -->
            <!--<form action="#" method="get" class="sidebar-form">
        <div class="input-group">
            <input type="text" name="q" class="form-control" placeholder="搜索...">
            <span class="input-group-btn">
            <button type="submit" name="search" class="btn btn-flat"><i class="fa fa-search"></i>
            </button>
          </span>
        </div>
    </form>-->
            <!-- /.search form -->


            <!-- sidebar menu: : style can be found in sidebar.less -->
            <ul class="sidebar-menu">
                <li class="header">菜单</li>

                <li><a href=""><i class="fa fa-dashboard"></i> <span>首页</span></a>
                </li>

                <!-- 菜单 -->


                <li class="treeview">
                    <a href="#">
                        <i class="fa fa-folder"></i> <span>用户管理</span>
                        <span class="pull-right-container">
                        <i class="fa fa-angle-left pull-right"></i>
                    </span>
                    </a>
                    <ul class="treeview-menu">

                        <li>
                            <a href="">
                                <i class="fa fa-circle-o"></i> 查询所有用户
                            </a>
                        </li>

                    </ul>
                </li>

                <!-- 菜单 /-->
            </ul>
        </section>
        <!-- /.sidebar -->
    </aside>
    <!-- 导航侧栏 /-->

    <!-- 内容区域 -->
    <!-- @@master = admin-layout.html-->
    <!-- @@block = content -->

    <div class="content-wrapper">

        <!-- 内容头部 -->
        <section class="content-header">
            <h1>
                数据管理
                <small>数据列表</small>
            </h1>
            <ol class="breadcrumb">
                <li><a href="#"><i class="fa fa-dashboard"></i> 首页</a></li>
                <li><a href="#">数据管理</a></li>
                <li class="active">数据列表</li>
            </ol>
        </section>
        <!-- 内容头部 /-->

        <!-- 正文区域 -->
        <section class="content">
            <!-- .box-body -->
            <div class="box box-primary">
                <div class="box-header with-border">
                    <h3 class="box-title">列表</h3>
                </div>
                <div class="box-body">
                    <!-- 数据表格 -->
                    <div class="table-box">
                        <!--工具栏-->
                        <div class="pull-left">
                            <div class="form-group form-inline">
                                <div class="btn-group">
                                    <button type="button" class="btn btn-default"><i
                                            class="fa fa-file-o"></i> 新建
                                    </button>
                                    <button type="button" class="btn btn-default"><i
                                            class="fa fa-trash-o"></i> 删除
                                    </button>
                                    <button type="button" class="btn btn-default"><i class="fa fa-check"></i>
                                        开启
                                    </button>
                                    <button type="button" class="btn btn-default"><i class="fa fa-ban"></i>
                                        屏蔽
                                    </button>
                                    <button type="button" class="btn btn-default"><i
                                            class="fa fa-refresh"></i> 刷新
                                    </button>
                                </div>
                            </div>
                        </div>
                        <div class="box-tools pull-right">
                            <div class="has-feedback">
                                <input type="text" class="form-control input-sm" placeholder="搜索">
                                <span class="glyphicon glyphicon-search form-control-feedback"></span>
                            </div>
                        </div>
                        <!--工具栏/-->
                        <!--数据列表-->
                        <table class="table table-bordered table-striped table-hover dataTable">
                            <thead>
                            <tr>
                                <th class="" style="padding-right:0px;">
                                    <input type="checkbox" class="icheckbox_square-blue">
                                </th>
                                <th class="sorting_asc">ID</th>
                                <th class="sorting_desc">用户名</th>
                                <th class="sorting_asc sorting_asc_disabled">密码</th>
                                <th class="sorting_desc sorting_desc_disabled">性别</th>
                                <th class="sorting">年龄</th>
                                <th class="text-center sorting">邮箱</th>
                                <th class="text-center">操作</th>
                            </tr>
                            </thead>
                            <tbody>
                            <tr v-for="u in userList">
                                <td><input name="ids" type="checkbox"></td>
                                <td>{{}}</td>
                                <td>{{}}
                                </td>
                                <td>{{}}</td>
                                <td>{{}}</td>
                                <td>{{}}</td>
                                <td class="text-center">{{}}</td>
                                <td class="text-center">
                                    <button type="button" class="btn bg-olive btn-xs">详情</button>
                                    <button type="button" class="btn bg-olive btn-xs" @click="findById()">编辑
                                    </button>
                                </td>
                            </tr>

                            </tbody>
                            <!--模态窗口-->
                            <div class="tab-pane">
                                <div class="modal modal-primary" role="dialog">
                                    <div class="modal-dialog modal-lg">
                                        <div class="modal-content">
                                            <div class="modal-header">
                                                <button type="button" class="close" data-dismiss="modal"
                                                        aria-label="Close">
                                                    <span aria-hidden="true">&times;</span></button>
                                                <h4 class="modal-title">用户信息</h4>
                                            </div>
                                            <div class="modal-body">
                                                <div class="box-body">
                                                    <div class="form-horizontal">
                                                        <div class="form-group">
                                                            <label class="col-sm-2 control-label">用户名:</label>
                                                            <div class="col-sm-5">
                                                                <input type="text" class="form-control"
                                                                       v-model="">
                                                            </div>
                                                        </div>
                                                        <div class="form-group">
                                                            <label class="col-sm-2 control-label">密码:</label>
                                                            <div class="col-sm-5">
                                                                <input type="text" class="form-control"
                                                                       v-model="">
                                                            </div>
                                                        </div>
                                                        <div class="form-group">
                                                            <label class="col-sm-2 control-label">性别:</label>
                                                            <div class="col-sm-5">
                                                                <input type="text" class="form-control"
                                                                       v-model="">
                                                            </div>
                                                        </div>
                                                        <div class="form-group">
                                                            <label class="col-sm-2 control-label">年龄:</label>
                                                            <div class="col-sm-5">
                                                                <input type="text" class="form-control"
                                                                       v-model="">
                                                            </div>
                                                        </div>
                                                        <div class="form-group">
                                                            <label class="col-sm-2 control-label">邮箱:</label>
                                                            <div class="col-sm-5">
                                                                <input type="text" class="form-control"
                                                                       v-model="">
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                            <div class="modal-footer">
                                                <button type="button" class="btn btn-outline" data-dismiss="modal">关闭
                                                </button>
                                                <button type="button" class="btn btn-outline" data-dismiss="modal"
                                                        @click="updateUser">修改
                                                </button>
                                            </div>
                                        </div>
                                        <!-- /.modal-content -->
                                    </div>
                                    <!-- /.modal-dialog -->
                                </div>
                                <!-- /.modal -->
                            </div>
                            <!--模态窗口/-->
                        </table>
                        <!--数据列表/-->
                        <!--工具栏-->
                        <div class="pull-left">
                            <div class="form-group form-inline">
                                <div class="btn-group">
                                    <button type="button" class="btn btn-default"><i
                                            class="fa fa-file-o"></i> 新建
                                    </button>
                                    <button type="button" class="btn btn-default"><i
                                            class="fa fa-trash-o"></i> 删除
                                    </button>
                                    <button type="button" class="btn btn-default"><i class="fa fa-check"></i>
                                        开启
                                    </button>
                                    <button type="button" class="btn btn-default"><i class="fa fa-ban"></i>
                                        屏蔽
                                    </button>
                                    <button type="button" class="btn btn-default"><i
                                            class="fa fa-refresh"></i> 刷新
                                    </button>
                                </div>
                            </div>
                        </div>
                        <div class="box-tools pull-right">
                            <div class="has-feedback">
                                <input type="text" class="form-control input-sm" placeholder="搜索">
                                <span class="glyphicon glyphicon-search form-control-feedback"></span>
                            </div>
                        </div>
                        <!--工具栏/-->
                    </div>
                    <!-- 数据表格 /-->
                </div>
                <!-- /.box-body -->
                <!-- .box-footer-->
                <div class="box-footer">
                    <div class="pull-left">
                        <div class="form-group form-inline">
                            总共2 页,共14 条数据。 每页
                            <select class="form-control">
                                <option>1</option>
                                <option>2</option>
                                <option>3</option>
                                <option>4</option>
                                <option>5</option>
                            </select> 条
                        </div>
                    </div>
                    <div class="box-tools pull-right">
                        <ul class="pagination">
                            <li>
                                <a href="#" aria-label="Previous">首页</a>
                            </li>
                            <li><a href="#">上一页</a></li>
                            <li><a href="#">1</a></li>
                            <li><a href="#">2</a></li>
                            <li><a href="#">3</a></li>
                            <li><a href="#">4</a></li>
                            <li><a href="#">5</a></li>
                            <li><a href="#">下一页</a></li>
                            <li>
                                <a href="#" aria-label="Next">尾页</a>
                            </li>
                        </ul>
                    </div>
                </div>
                <!-- /.box-footer-->
            </div>
        </section>
        <!-- 正文区域 /-->
    </div>
    <!-- @@close -->
    <!-- 内容区域 /-->
    <!-- 底部导航 -->
    <footer class="main-footer">
        <div class="pull-right hidden-xs">
            <b>Version</b> .8
        </div>
        <strong>Copyright &copy; 2014-2017 <a href="#">项目练习</a>.</strong> All rights reserved.
    </footer>
    <!-- 底部导航 /-->
</div>
<script src="/vue/plugins/jQuery/"></script>
<script src="/vue/plugins/jQueryUI/"></script>
<script>
    $.('uibutton', $.);
</script>
<script src="/vue/plugins/bootstrap/js/"></script>
<script src="/vue/plugins/raphael/"></script>
<script src="/vue/plugins/morris/"></script>
<script src="/vue/plugins/sparkline/"></script>
<script src="/vue/plugins/jvectormap/"></script>
<script src="/vue/plugins/jvectormap/"></script>
<script src="/vue/plugins/knob/"></script>
<script src="/vue/plugins/daterangepicker/"></script>
<script src="/vue/plugins/daterangepicker/"></script>
<script src="/vue/plugins/daterangepicker/"></script>
<script src="/vue/plugins/datepicker/"></script>
<script src="/vue/plugins/datepicker/locales/"></script>
<script src="/vue/plugins/bootstrap-wysihtml5/"></script>
<script src="/vue/plugins/slimScroll/"></script>
<script src="/vue/plugins/fastclick/"></script>
<script src="/vue/plugins/iCheck/"></script>
<script src="/vue/plugins/adminLTE/js/"></script>
<script src="/vue/plugins/treeTable/"></script>
<script src="/vue/plugins/select2/"></script>
<script src="/vue/plugins/colorpicker/"></script>
<script src="/vue/plugins/bootstrap-wysihtml5/"></script>
<script src="/vue/plugins/bootstrap-markdown/js/"></script>
<script src="/vue/plugins/bootstrap-markdown/locale/"></script>
<script src="/vue/plugins/bootstrap-markdown/js/"></script>
<script src="/vue/plugins/bootstrap-markdown/js/to-"></script>
<script src="/vue/plugins/ckeditor/"></script>
<script src="/vue/plugins/input-mask/"></script>
<script src="/vue/plugins/input-mask/"></script>
<script src="/vue/plugins/input-mask/"></script>
<script src="/vue/plugins/datatables/"></script>
<script src="/vue/plugins/datatables/dataTables."></script>
<script src="/vue/plugins/chartjs/"></script>
<script src="/vue/plugins/flot/"></script>
<script src="/vue/plugins/flot/"></script>
<script src="/vue/plugins/flot/"></script>
<script src="/vue/plugins/flot/"></script>
<script src="/vue/plugins/ionslider/"></script>
<script src="/vue/plugins/bootstrap-slider/"></script>
<script src="/vue/plugins/bootstrap-datetimepicker/"></script>
<script src="/vue/plugins/bootstrap-datetimepicker/locales/"></script>
<script src="/vue/js/"></script>
<script src="/vue/js/"></script>
<script src="/vue/js/"></script>
<script>
    $(document).ready(function () {
        // 选择框
        $(".select2").select2();

        // WYSIHTML5编辑器
        $(".textarea").wysihtml5({
            locale: 'zh-CN'
        });
    });

    // 设置激活菜单
    function setSidebarActive(tagUri) {
        var liObj = $("#" + tagUri);
        if (liObj.length > 0) {
            ().parent().addClass("active");
            ("active");
        }
    }

    $(document).ready(function () {

        // 激活导航位置
        setSidebarActive("admin-datalist");

        // 列表按钮
        $("#dataList td input[type='checkbox']").iCheck({
            checkboxClass: 'icheckbox_square-blue',
            increaseArea: '20%'
        });
        // 全选操作
        $("#selall").click(function () {
            var clicks = $(this).is(':checked');
            if (!clicks) {
                $("#dataList td input[type='checkbox']").iCheck("uncheck");
            } else {
                $("#dataList td input[type='checkbox']").iCheck("check");
            }
            $(this).data("clicks", !clicks);
        });
    });
</script>
</body>
</html>
页面

功能一个一个的实现,首先编写findAll,测试,之后findById,测试,之后updateUser,测试文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

new Vue({
    el: "#app",
    data: {
        user: {
            is: '',
            username: '',
            password: '',
            email: '',
            age: '',
            sex: ''
        },
        userList: []
    },
    methods: {
        findAll: function () {
            var _this = this;//定义this为vue对象,如果在axios中定义则是axios对象
            (
                '/vue/user/'
            )
                .then(function (response) {//需要在controller里加上@ResponseBody,直接加在类上就不用在每个需要加的方法上加了
                    List = response.data;//响应数据给userList(上边定义了userList)赋值
                    (response);
                })
                .catch(function (erroe) {
                    (error);
                })
        },
        findById: function (userId) {
            var _this = this;//定义this为vue对象,如果在axios中定义则是axios对象
            ('/vue/user/', {params:{id:userId}})
                .then(function (response) {//需要在controller里加上@ResponseBody,直接加在类上就不用在每个需要加的方法上加了
                     = response.data;//响应数据给user(上边定义了user)
                    $("#myModal").modal("show");//开启编辑修改功能
                })
                .catch(function (error) {
                    (error);
                })
        },
        updateUser: function (user) {//post请求
            var _this = this;//定义this为vue对象,如果在axios中定义则是axios对象
            ('/vue/user/', )//需要在controller里的updataUser的参数类型前加上@RequsetBody
                .then(function (response) {
                    ();
                })
                .catch(function (error) {
                    (error);
                })
        }
    },
    created: function () {//当页面加载时触发请求来查询所有
        ();
    }
});

结果

MacOS下VUEJS快速简单学习入门文章源自菜鸟学院-https://www.cainiaoxueyuan.com/gcs/18776.html

  • 本站内容整理自互联网,仅提供信息存储空间服务,以方便学习之用。如对文章、图片、字体等版权有疑问,请在下方留言,管理员看到后,将第一时间进行处理。
  • 转载请务必保留本文链接:https://www.cainiaoxueyuan.com/gcs/18776.html

Comment

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定