vue路由介绍

83 阅读4分钟

概念

路由: 就是一一对应关系的集合

前端路由(单页应用程序): 一个url地址,对应哪个组件

image.png 后端路由: 一个接口地址,对应哪一段接口地址

image.png

工作原理

  • 前端路由的本质, 对url的hash值进行改变和监听,切换对应页面组件的dom结构
  • 根据地址栏变化(不重新向服务器发请求),去局部更新不同的页面内容,完成前端业务场景切换

思路

  1. URL 地址栏中的 Hash 值发生了变化
  2. 前端js监听了到 Hash 地址的变化 window.onhashchange=()=>{}
  3. 前端js把当前 Hash 地址对应的组件渲染都浏览器中

基本使用

操作

  1. 安装 npm i vue-router@3.5.3 (对应vue2)
  2. 创建路由文件 router/index.js
// 导入路由插件
import VueRouter from 'vue-router'
import Vue from 'vue'

// 使用插件 - 重要
Vue.use(VueRouter)

// 导入组件

import Page1 from './Page1.vue'
import Page2 from './Page2.vue'
import Page3 from './Page3.vue'


// 创建路由规则
const router = new VueRouter({
  routes: [
    {
      path: "/page1", // 当浏览器访问 http://localhost:8080/#/page1时,
      component: Page1  // 装入组件 Page1
    },
    {
      path: "/page2",
      component: Page2
    },
    {
      path: "/page3",
      component: Page3
    }
  ]
})

export default router
  1. 使用路由

在main.js中

import router from './router/index.js'

new Vue({
  router: router, // 使用路由
  render: h => h(App),
}).$mount('#app')

app.vue

<router-view></router-view>

图示 image.png

  • 下载路由模块, 编写对应规则注入到vue实例上, 使用router-view挂载点显示切换的路由

链接导航 router-link

作用: 用于提供路由链接,实现页面跳转

格式: <router-link to="/home">首页</router-link>

要点:

  • 是vue-router提供的组件
  • router-link最终会渲染成a链接
  • router-link自带链接导航高亮的功能
<template>
  <div>
    <h1>App组件</h1>
    <ul>
      <li><router-link to="/home">首页</router-link></li>
      <li><router-link to="/movie">电影</router-link></li>
      <li><router-link to="/about">关于</router-link></li>
    </ul>
    <router-view></router-view>
  </div>
</template>

激活类名

router-link-exact-active router-link-active

小结

链接导航, 用router-link配合to, 实现点击切换路由

  • router-link组件会被vue解析成a标签,但不能直接通过a标签来跳转。
  • 如果当前路由被激活会添加特殊的类名:
    • router-link-exact-active
    • router-link-active

页面跳转传参

传参的方式:

  • query传参。 适用场景:页面搜索
  • params传参。 适用场景:详情页
  1. 创建components/MyGoods.vue - 准备接收路由上传递的参数和值
<div>
    你要浏览的商品是: {{ $route.query.name }} {{ $route.params.goodsId}}
</div>
  1. 路由定义
{
    path: "/goods",
    component: MyGoods
  },
  {
    path: "/goods/:goodsId",
    component: MyGoods
  },

3.导航跳转, 传值给MyGoods.vue组件

<li><router-link to="/goods?name=外套">外套</router-link></li>
<li><router-link to="/goods/123">详情</router-link></li>

  • query传参和params传参
 methods: {
    fn(){
      //this.$route, this.$router 都是vue-router插件提供的功能
      //this.$route: 保存当前的路由信息。用做获取传递的参数

      //this.$router: 路由对象。router/index.js 中导出的对象,提供各种路由相关的API。例如页面跳转

      this.$router.push('/news/123456')
      this.$router.push('/home')
      this.$router.push({path: '/home'})
       name是路由规则(router/index.js)中,每个路由规则都可以有名字
      this.$router.push({name: 'movie'})


      跳转并query传参-方式1
      this.$router.push("/movie?a=200&b=300")
      跳转并query传参-方式2
      this.$router.push({
          path: "/movie",
          query: {
              "a":2001,
              "b":3001
          }
      })

      跳转并params传参-方式1
      this.$router.push("/路由路径/值1/值2")
      this.$router.push('/news/123456')
      跳转并params传参-方式2
      this.$router.push({
          name: "news",
          params: {
            "id":1000
          }
      })
    }
  }

image.png

image.png

重定向

重定向: 用户访问的是A地址,系统把它切换到B地址。

应用场景:改变默认访问页面的行为

const routes = [
  {
    path: "/",
    redirect: "/home" // 重定向
  }
]

路由404

统一处理异常地址:那些个正常配置的地址之外的地址。

通过通配符*,设置404页面

import NotFound from "@/components/NotFound";

const routes = [
  {
    path: "/",
    redirect: "/home" // 重定向
  },
  
  // ...正常路由
  
  { // 当上面路由都不匹配, 匹配这个通配符, 显示NotFound页面
    path: "*",
    component: NotFound
  }
]

编程式导航

写代码的方式来让页面跳转

// 跳转页面不传参
this.$router.push('/路由路径')
this.$router.push({path: '路由路径'})
this.$router.push({name: '路由名称'})

// 跳转并query传参-方式1
this.$router.push("/路由路径?参数1=值1&参数2=值2")
// 跳转并query传参-方式2
this.$router.push({
    path: "路由路径",
    query: {
        "参数1":值1,
        "参数2":值2
    }
})

// 跳转并params传参-方式1
this.$router.push("/路由路径/值1/值2")
// 跳转并params传参-方式2
this.$router.push({
    name: "路由名称",
    params: {
        "参数1":值1,
        "参数2":值2
    }
})


// 后退
$router.back()

路由嵌套

原理:router-view中再次包含router-view。

背景:一个组件内部包含的业务还是很复杂,需要再次进行拆分。

routes:[
  {
    path: '/page1', 
    component: Page1, // 这个组件内部还有router-view
    children: [
      {
        path:'',  // path为空,表示当 #/page1时,显示 Page1组件+组件1
        component: 组件1  // 
      },
      {
        path:'/xx1', // path以/开头,表示当 #/xx1时,显示 Page1组件+组件2
        component: 组件2
      },
      {
        path:'xx2', // path以/开头,表示当 /page1/xx2时,显示 Page1组件+组件3
        component: 组件3
      }
    ]
  }
]

全局前置守卫

目标: 路由跳转之前, 会触发一个函数

语法:router.beforeEach((to, from, next) => {})

案例: 在跳转路由前, 判断用户登陆了才能去<我的音乐>页面, 未登录弹窗提示回到发现音乐页面

实现:

  • router/index.js 路由对象上使用固定方法beforeEach
// 路由前置守卫
router.beforeEach((to, from, next) => {
  // to: 代表要跳转到哪个路径去, to的值是个对象可以打印看到
  // from:代表从哪个路径跳过去
  // next:函数  next()放行 next(false)不跳 next(路径)
  console.log(to);
  console.log(from);

  // fullPath带?后面参数的, path是完整的路径
  console.log("路由要跳转了");

  // 模拟判断登录了没有, 登录后才能去我的音乐
  let loginFlag = false; // 假设false代表未登录
  if (to.path == "/my" && loginFlag == false) {
    // 如果去个人中心页面, 判断未登录, 提示登录(并强制跳转回find)
    alert("请先登录!");
    next("/find");
  } else {
    // 如果不去/my页面就直接跳转
    next();
  }
});

全局后置守卫

目标: 路由跳转后, 触发的函数

语法:router.afterEach((to, from) => {})

使用:

router/index.js - 添加

// 重定向(有路径的跳转),不会进入到后置守卫中
router.afterEach((to, form) => {
    console.log(to);
    console.log(form);
    console.log("路由发生了跳转");
})

路由模式设置

目标: 修改路由在地址栏的模式

模式文档

router/index.js

const router = new VueRouter({
  routes,
  mode: "history" // 打包上线后需要后台支持
})

history和hash模式对比:

  1. 功能一样(跳转页面)
  2. history模式的path路径不带#号,hash有#号
  3. hash模式兼容性好

示例

hash路由例如:   http://localhost:8081/#/home

history路由例如: http://localhost:8081/home