当前位置:
首页 > temp > JavaScript教程 >
-
160_Vue实战:路由模式,404,路由钩子
路由模式
路由模式有两种
- hash:路径带 # 符号,如 http://localhost/#/login
-
history:路径不带 # 符号,如 http://localhost/login
hash:路径带 # 符号,如 http://localhost/#/login
路由模式不设置,默认hash,也可以显式设置
export default new Router({
mode: "hash",
routes: [
]
});
history:路径不带 # 符号,如 http://localhost/login
修改路由配置index.js,设置mode: "history"
export default new Router({
mode: "history",
routes: [
]
});
import Vue from 'vue'
import Router from 'vue-router'
import Main from '../views/Main'
import Login from '../views/Login'
import UserProfile from '../views/user/Profile'
import UserList from '../views/user/List'
Vue.use(Router);
export default new Router({
mode: "history",
routes: [
{
path: '/main/:username',
component: Main,
props: true,
children: [
{
path: '/user/profile/:id',
name: 'UserProfile',
component: UserProfile
},
{
path: '/user/list/:id/:name',
name: 'UserList',
component: UserList,
props: true
}
]
},
{
path: '/login',
component: Login
},
{
path: '/goHome',
redirect: '/main'
}
]
});
404
创建一个名为 NotFound.vue的视图组件
<template>
<div>
<h1>404,你的页面走丢了</h1>
</div>
</template>
<script>
export default {
name: "NotFound"
}
</script>
<style scoped>
</style>
修改路由配置,配置404路由
import NotFound from "../views/NotFound";
{
path: '*',
component: NotFound
}
import Vue from 'vue'
import Router from 'vue-router'
import Main from '../views/Main'
import Login from '../views/Login'
import UserProfile from '../views/user/Profile'
import UserList from '../views/user/List'
import NotFound from "../views/NotFound";
Vue.use(Router);
export default new Router({
mode: "hash",
routes: [
{
path: '/main/:username',
component: Main,
props: true,
children: [
{
path: '/user/profile/:id',
name: 'UserProfile',
component: UserProfile
},
{
path: '/user/list/:id/:name',
name: 'UserList',
component: UserList,
props: true
}
]
},
{
path: '/login',
component: Login
},
{
path: '/goHome',
redirect: '/main'
},
{
path: '*',
component: NotFound
}
]
});
路由钩子
beforeRouteEnter:在进入路由前执行
beforeRouteLeave:在离开路由前执行
<template>
<div>
<h1>用户列表</h1>
{{id}}
{{name}}
</div>
</template>
<script>
export default {
name: "UserList",
props: ['id','name'],
beforeRouteEnter: (to,from,next)=>{
console.log("进入路由之前");
next();
},
beforeRouteLeave: (to,from,next)=>{
console.log("离开路由之前");
next();
}
}
</script>
<style scoped>
</style>
参数说明:
- to:路由将要跳转的路径信息
- from:路径跳转前的路径信息
-
next:路由的控制参数
- next() 跳入下一个页面
- next(’/path’) 改变路由的跳转方向,使其跳到另一个路由
- next(false) 返回原来的页面
-
next((vm)=>{}) 仅在 beforeRouteEnter 中可用,vm 是组件实例
钩子函数中使用异步请求
axios官网:http://www.axios-js.com/
安装 Axios cnpm install axios vue-axios -s
PS D:\code\vue\hello-vue> cnpm install axios vue-axios -s
√ Installed 2 packages
√ Linked 3 latest versions
√ Run 0 scripts
√ All packages installed (1 packages installed from npm registry, used 7s(network 7s), speed 7.29KB/s, json 3(49.92KB), tarball 3.89KB)
PS D:\code\vue\hello-vue>
main.js引用 Axios
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios);
import Vue from 'vue'
import App from './App'
import router from './router'
// 导入ElementUI
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios);
// 安装路由
Vue.use(router);
// 安装ElementUI
Vue.use(ElementUI);
new Vue({
el: '#app',
router, // 启用路由
render: h => h(App) // 启用ElementUI
})
准备数据 : 只有我们的 static 目录下的文件是可以被访问到的,所以我们就把静态文件放入该目录下
/static/mock/data.json
{
"name": "haoran",
"url": "https://blog.csdn.net/adsdaas",
"page": 1,
"isNonProfit": true,
"address": {
"street": "含光门",
"city": "陕西西安",
"country": "中国"
},
"links": [
{
"name": "bilibili",
"url": "https://space.bilibili.com/95256449"
},
{
"name": "haoran",
"url": "https://blog.csdn.net/adsdaas"
},
{
"name": "百度",
"url": "https://www.baidu.com/"
}
]
}
在 beforeRouteEnter 中进行异步请求
<template>
<div>
<h1>用户列表</h1>
{{id}}
{{name}}
</div>
</template>
<script>
export default {
name: "UserList",
props: ['id','name'],
beforeRouteEnter: (to,from,next)=>{
console.log("进入路由之前");
next(vm => {
vm.getData(); // 进入路由之前执行getData
});
},
beforeRouteLeave: (to,from,next)=>{
console.log("离开路由之前");
next();
},methods: {
getData: function () {
this.axios({
method: "get",
url: "http://localhost:8080/static/mock/data.json"
}).then(function (response) {
console.log(response);
});
}
}
}
</script>
<style scoped>
</style>
出 处:
https://www.cnblogs.com/wl3pb/p/15579883.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数