回顾前端:
IDEA安装Vue.js插件:
打开IDEA,依次展开File > Settings > Plugins
搜索vue.js,在Marketplace中,点击Install,重启IDEA
idea 安装 Vue 插件没有Vue component选项
解决方法:
依次展开File > Settings > Editor > File and Code Templates
选中Vue Single File Component,点击最上方的Copy Template
把复制下来的Name值改为Vue Component,Extension:vue,代码不用动
vue是一套用于构建用户界面的渐进式框架,其核心库只关注视图层!
#其实是css中的选择器,id选择器
$是jQuery 元素选择器
jQuery 使用 CSS 选择器来选取 HTML 元素。
$("p") 选取 <p> 元素。
$("p.intro") 选取所有 class="intro" 的 <p> 元素。
$("p#demo") 选取所有 id="demo" 的 <p> 元素。
jQuery CSS 选择器可用于改变 HTML 元素的 CSS 属性
*$("p").css("background-color","red");*
Vue:一款逐步实现新特性的JavaScript框架,实现模块化开发、路由、状态管理等新特性
Axios:前端通信框架,页可以使用jQuery提供的AJAX通信框架。
cdn引入:
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
{{message}}
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script>
var vm = new Vue({
//Model:数据
el: "#app",
data:{
message: "hello,vue!"
}
});
script>
body>
html>
低耦合:视图独立于Model变化和修改,一个ViewModel开源绑定到不同的View上,当View变化的时候Model开源不变,当Model变化的是很好View开源不变
可复用:很多View可以重复视图逻辑
独立开发:专注业务逻辑和数据的开发
导入命名空间:
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml">
显示悬浮功能:
<div id="app">
<span v-bind:title="message">
查看提示信息!
span>
div>
DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
<h1 v-if="type==='A'">Ah1>
<h1 v-else-if="type==='B'">Bh1>
<h1 v-else-if="type==='C'">Ch1>
<h1 v-else>Dh1>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script>
var vm = new Vue({
//Model:数据
el: "#app",
data: {
type: 'A'
}
});
script>
body>
html>
DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
<li v-for="items in items">
{{items.message}}
li>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script>
var vm = new Vue({
//Model:数据
el: "#app",
data: {
items: [
{message: '刘想1'},
{message: '刘想2'},
]
}
});
script>
body>
html>
DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
<button v-on:click="a">click mebutton>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script>
var vm = new Vue({
//Model:数据
el: "#app",
data: {
message: "溜溜梅"
},
methods: {//方法必须定义在vue的methods对象中(一堆方法)
a: function (){
alert(this.message);
}
}
});
script>
body>
html>
Vue.js是一个MVVM框架,即数据双向绑定,当数据发生变化的时候,视图也发生变化,当视图发生变化的时候,数据也发生变化
使用v-model
指令在表单,
textarea
及select
元素上创建双向数据绑定。
DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
下拉框:
<select v-model="message">
<option value="" disabled>-请选择-option>
<option>Aoption>
<option>Boption>
<option>Coption>
select>
<span>value:{{message}}span>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script>
var vm = new Vue({
//Model:数据
el: "#app",
data: {
message: ''
}
});
script>
body>
html>
组件是可复用的vue实例,是一组可以重复使用的模板,跟JSTL的自定义标签、thymeleaf的th:fragment
一样。
Vue.component
注册组件,组件有两个参数
props
:接收参数template
:模板数据进行遍历,遍历出来item对象,组件和对象是同级的,需要通过接收参数
DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
<liuxiang v-for="item in items" v-bind:item="item">liuxiang>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script>
//定义一个vue的component
Vue.component("liuxiang",{
props:['item'], //接收参数
template: '{{item}} '
});
var vm = new Vue({
//Model:数据
el: "#app",
data: {
items:["java","llx","linux"]
}
});
script>
body>
html>
vue实例的生命周期:从开始创建、初始化数据、编译模板、挂载DOM、渲染-更新-渲染,卸载等一系列过程。
json文件:
{
"name":"狂神说java",
"url": "http://baidu.com",
"page": "1",
"isNonProfit":"true",
"address": {
"street": "含光门",
"city":"陕西西安",
"country": "中国"
},
"links": [
{
"name": "B站",
"url": "https://www.bilibili.com/"
},
{
"name": "4399",
"url": "https://www.4399.com/"
},
{
"name": "百度",
"url": "https://www.baidu.com/"
}
]
}
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
<style>
[v-cloak]{
display: none;
}
style>
head>
<body>
<div id="vue" v-cloak>
<div>{{info.name}}div>
<div>{{info.address}}div>
<a v-bind:href="info.url">跳转链接a>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script src="https://unpkg.com/axios/dist/axios.min.js">script>
<script tpye="text/javascript">
var vm = new Vue({
el: '#vue',
data(){
return {
// 请求的返回参数必须和json字符串一样
info: {
name: null,
address: {
country: null,
city: null,
street: null
},
url:null
}
}
},
mounted(){ //钩子函数 ES6新特性
axios
.get('../data.json')
.then(response => (this.info = response.data));
}
});
script>
body>
html>
虚拟DOM:可以理解为缓存!
属性变了,从新计算!
计算属性就是将不经常变化的结果进行缓存,以节省系统开销!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
<p> currentTime1: {{currentTime1()}}p>
<p> currentTime2: {{currentTime2}}p>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script src="https://unpkg.com/axios/dist/axios.min.js">script>
<script tpye="text/javascript">
var vm = new Vue({
el: '#app',
data: {
message: "hello"
},
methods: { //调用方法需要()
currentTime1: function () {
return Date.now();
}
},
computed: { //计算属性 methods computed方法名不能重名
currentTime2: function () {
this.message;
return Date.now();
}
}
});
script>
body>
html>
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
<liuxiang>
<liuxiang-title slot="liuxiang-title" v-bind:title="title">liuxiang-title>
<liuxiang-items slot="liuxiang-items" v-for="item in liuxiangItems" v-bind:item="liuxiangItems">liuxiang-items>
liuxiang>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script src="https://unpkg.com/axios/dist/axios.min.js">script>
<script tpye="text/javascript">
Vue.component("liuxiang",{
template: '\
\
\
\
\
'
});
Vue.component("liuxiang-title",{
props: ['title'],
template: '{{title}}'
});
Vue.component("liuxiang-items",{
props: ['item'],
template: '{{item}} '
});
var vm = new Vue({
el: '#app',
data: {
title: '列表',
liuxiangItems: ['java','python','linux']
}
});
script>
body>
html>
前端就是视图层:
v-on:remove="removeItems(index)"
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<div id="app">
<liuxiang>
<liuxiang-title slot="liuxiang-title" v-bind:title="title">liuxiang-title>
<liuxiang-items slot="liuxiang-items" v-for="(item,index) in liuxiangItems"
v-bind:item="liuxiangItems" v-bind:index="index"
v-on:remove="removeItems(index)" v-bind:key="index">liuxiang-items>
liuxiang>
div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js">script>
<script src="https://unpkg.com/axios/dist/axios.min.js">script>
<script tpye="text/javascript">
Vue.component("liuxiang",{
template: '\
\
\
\
\
'
});
Vue.component("liuxiang-title",{
props: ['title'],
template: '{{title}}'
});
Vue.component("liuxiang-items",{
props: ['item','index'],
template: '{{item}} ',
methods: {
remove: function (index) {
//自定义事件分发
this.$emit('remove',index);
}
}
});
var vm = new Vue({
el: '#app',
data: {
title: '列表',
liuxiangItems: ['java','python','linux']
},
methods: {
removeItems: function (index) {
console.log("删除了"+this.liuxiangItems[index]+"ok");
this.liuxiangItems.splice(index,1); //从index开始的第一个元素删除
}
}
});
script>
body>
html>
总结:
自此,后端人员再也不用关注视图层了,只用关注数据的传输,通过axios异步通信,data数据return即可!
v-on绑定事件 简写为@
v-model 数据双向绑定
v-bind 给组件绑定参数,简写为:
组件化:
this.$emit('事件名',参数)
vue-cli是官方提供的一个脚手架,用于快速生成一个vue的项目模板
安装Nodejs网站:下载 | Node.js 中文网 (nodejs.cn)
无脑安装下一步即可!
确认nodejs安装成功:
cmd下输入node -v
,查看是否正确打印出版本号
cmd下输入npm -v
,查看是否正确打印出版本号
无需配置环境变量,自动配置好了
安装Node.js淘宝镜像加速器(cnpm)
# -g 就是全局安装
npm install cnpm -g
#或者以下语句解决npm速度慢的问题
npm install -- registry=https://registry.npm.taobao.org
安装成功!
安装的位置:C:\Users\liuxiang\AppData\Roaming\npm
安装vue-cli
cnpm install vue-cli -g
#测试是否安装成功
vue list
执行vue项目打包
vue init webpack myvue
在项目文件夹下会生成一个myvue的文件
初始化并运行
cd myvue
#安装所有项目依赖环境
cnpm install
#运行
cnpm run dev
服务端的nodejs遵循commonsjs规范,该规范核心思想是允许模块通过require方法来同步加载所需依赖的其他模块,然后通过exports或module.exports来导出需要暴露的接口
require("module")
require("../moudule.js");
export.doStuff = function(){};
moudule.exports = someValue;
优点:
缺点:
实现:
实现异步加载
缺点:提高了开发成本
实现:requireJS、curl
define(function(require,exports,module){
var $ = require("jquery");
var spinning = require("./spinning");
export.doSomething = ...;
module.export = ...;
});
优点:依赖就近
缺点:依赖spm打包
实现:sea.js
思想:尽量模块化,使编译就能缺点模块的依赖的关系,以及输入和输出的变量。
import "jquery";
export function doStuff(){}
module "localModule"{}
安装:
npm install webpack -g
npm install webpack-cli -g
测试:
webpack -v
webpack-cli -v
配置:
1.创建项目
2.创建一个moudules的目录,存放js文件!
3.在modules下创建模块文件,
//暴露一个方法
exports.sayHi = function () {
document.write("牛牛的博客
")
}
var hello = require("./hello");
hello.sayHi();
打包的配置文件
module.exports = {
entry: './modules/main.js',
output: {
filename: "./js/bundle.js"
}
};
在当前项目下的terminal输出语句:webpack
即可打包!webpack --watch
是监听功能!
输出打包后的文件:
(()=>{var r={645:(r,t)=>{t.sayHi=function(){document.write("牛牛的博客
")}}},t={};(function e(o){var i=t[o];if(void 0!==i)return i.exports;var n=t[o]={exports:{}};return r[o](n,n.exports,e),n.exports})(645).sayHi()})();
在index页面下引入打包后的文件即可!
<script src ="dist/js/bundle.js">script>
功能:
1.安装:
在当前项目下:
cnpm install [email protected] --save-dev
2.如果在一个模块化工程中使用,必须要通过Vue.use()明确的安装路由功能:
import Vue form 'vue'
import VueRouter from 'vue-router'
//显示的声明引用
Vue.use(VueRouter);
3.定义一个Content.vue组件
内容页
定义一个首页组件
首页
4.安装路由,在src目录下,新建一个文件夹:router,专门存放路由
import Vue from "vue";
//导入路由插件
import VueRouter from "vue-router";
import Content from "../components/Content";
import Main from "../components/Main";
//安装路由
Vue.use(VueRouter);
Vue.use(Main);
//配置导出路由
export default new VueRouter({
routes: [
{
//路由路径 @RequestMapping
path: '/content',
name: 'content',
//要跳转的组件
component: Content
},
{
//路由路径
path: '/main',
name: 'content',
//要跳转的组件
component: Main
}
]
})
5.在main.js中配置路由
import Vue from 'vue'
import App from './App'
import router from './router' //自动扫描里面的路由配置
Vue.config.productionTip = false
new Vue({
el: '#app',
//配置路由
router,
components: { App },
template: ' '
})
6.在App.vue中使用
Vue-Router
跳到首页
内容页
1.安装commonJS
cnpm install --save axios vue-axios
2.main.js引用axios
import Vue from 'vue'
import axios from 'axios'
import VueAxios from 'vue-axios'
//显示的声明引用axios
Vue.use(VueAxios,axios)
创建一个hello-vue的工程vue init webpack hello-vue
管理员cmd命令下
安装依赖,需要依次安装vue-router、element-UI、sass-loader和node-sass四个插件
#创建hello-vue工程
vue init webpack hello-vue
#进入工程目录
cd hello-vue
#安装 vue-router
cnpm install vue-router --save-dev
#安装 element-UI
cnpm i element-ui -S
#安装依赖
cnpm install
#安装sass加载器 css预处理器
cnpm install sass-loader node-sass --save-dev
#启动测试
cnpm run dev
欢迎 登录
登录
请输入账号和密码
Main.vue
首页
4.路由router组件 index.js
import Vue from "vue";
import VueRouter from 'vue-router'
import Main from "../views/Main";
import Login from "../views/Login";
Vue.use(VueRouter);
export default new VueRouter({
routers:[
{
path: '/login',
component: Login
},
{
path: '/main',
component: Main
}
]
})
5.main.js
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import elementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(router);
Vue.use(elementUI);
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
render: h => h(App) //element
})
6.App.vue
报错:Module build failed: TypeError: this.getOptions is not a function
解决:在packjson文件里将sass的版本降低到7.3.1,再重新cnpm install
导入依赖
"node-sass": "^4.0.0"
,"sass-loader": "^7.3.1"
sass-loader 4.1.1,node-sass 4.3.0
sass-loader 7.0.3,node-sass 4.7.2
sass-loader 7.3.1,node-sass 4.7.2
sass-loader 7.3.1,node-sass 4.14.1
sass-loader 10.0.1,node-sass 6.0.1
children
用户管理
个人信息
用户列表
内容管理
分类管理
内容列表
Profile.vue
个人信息
{{$route.params.id }}
index.js
import Vue from "vue";
import VueRouter from 'vue-router'
import Main from "../views/Main";
import Login from "../views/Login";
import UserList from '../views/user/List'
import UserProfile from "../views/user/Profile";
Vue.use(VueRouter);
export default new VueRouter({
routers:[
{
path: '/login',
component: Login
},
{
path: '/main',
component: Main
children: [
{path: '/user/profile/:id',component:UserProfile},
{path: '/user/List',component:UserList},
]
}
]
})
重定向:
{
path: '/goHome',
redirect: '/main'
}
接收路由:
回到首页
url解决带#问题:
- hash模式:带#,默认情况
- history模式:不带#
路由钩子:在组件的script代码块写
- to:路由将要跳转的路径信息
- from:路径跳转前的路径信息
- next:路由的控制参数
- next()跳入下一个页面
- next(‘path’)改变路由的跳转方向,使其跳到另一个路由
- next(false)返回原来的页面
- next((vm)=> {})仅在beforeRouteEnter中可使用,vm是组件实例
个人信息
{{$route.params.id }}
component: Login
},
{
path: '/main',
component: Main
children: [
{path: '/user/profile/:id',component:UserProfile},
{path: '/user/List',component:UserList},
]
}
]
})
重定向:
```js
{
path: '/goHome',
redirect: '/main'
}
接收路由:
回到首页
url解决带#问题:
- hash模式:带#,默认情况
- history模式:不带#
路由钩子:在组件的script代码块写
- to:路由将要跳转的路径信息
- from:路径跳转前的路径信息
- next:路由的控制参数
- next()跳入下一个页面
- next(‘path’)改变路由的跳转方向,使其跳到另一个路由
- next(false)返回原来的页面
- next((vm)=> {})仅在beforeRouteEnter中可使用,vm是组件实例
个人信息
{{$route.params.id }}