前端路由
根据不同的 url 地址展示不同的内容或页面,无需依赖服务器根据不同URL进行页面展示操作
优点
用户体验好,不需要每次都从服务器全部获取,快速展现给用户
缺点
使用浏览器的前进,后退键的时候会重新发送请求,没有合理地利用缓存 单页面无法记住之前滚动的位置,无法在前进,后退的时候记住滚动的位置
1.创建项目时需要选择路由(router)组件。
分别创建三个vue组件,放在views文件夹下。
创建 router.js组件,放在views文件夹下。
import Vue from 'vue'
import Router from 'vue-router'
import home from '@/views/home'
import center from '@/views/center'
import list from '@/views/list'//@表示指向src目录
Vue.use(Router)//vue全局使用Router
const router = new Router({
routes:[
{
path:'/home',
component:home
},
{
path:'/center',
component:center
},
{
path:'/list',
component:list
}
]
}
)
export default router
在main.js文件内引入router组件。
import Vue from 'vue'
import App from './App.vue'
import router from '@/views/router'
Vue.config.productionTip = false
new Vue({
router,
render: h => h(App)
}).$mount('#app')
在vue.
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<style lang="scss">
</style>
动态路由
HTML5 History 模式
vue-router 默认 hash 模式 —— 使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。
如果不想要很丑的 hash,我们可以用路由的 history 模式,这种模式充分利用 history.pushState API 来完成 URL 跳转而无须重新加载页面。
启动项目,访问路径会多个#。在后面输入路径即可显示相应的组件。
const router = new VueRouter({
mode: 'history',
routes: [...]
})
当你使用 history 模式时,URL 就像正常的 url,例如 http://yoursite.com/user/id,也好看!
不过这种模式要玩好,还需要后台配置支持。因为我们的应用是个单页客户端应用,如果后台没有正确的配置,当用户在浏览器直接访问 http://oursite.com/user/id 就会返回 404,这就不好看了。
所以呢,你要在服务端增加一个覆盖所有情况的候选资源:如果 URL 匹配不到任何静态资源,则应该返回同一个 index.html 页面,这个页面就是你 app 依赖的页面。
后端配置例子
Apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
除了 mod_rewrite,你也可以使用 FallbackResource
nginx
location / {
try_files $uri $uri/ /index.html;
}
## 警告
给个警告,因为这么做以后,你的服务器就不再返回 404 错误页面,因为对于所有路径都会返回 index.html 文件。为了避免这种情况,你应该在 Vue 应用里面覆盖所有的路由情况,然后在给出一个 404 页面。
const router = new VueRouter({
mode: 'history',
routes: [
{ path: '*', component: NotFoundComponent }
]
})
全局守卫
局部守卫
来源:oschina
链接:https://my.oschina.net/u/4157150/blog/3219482