vue-router4 |name的作用|query传参|parmas传参|动态路由参数|命名视图|别名alias|前置路由守卫|路由过渡效果|滚动行为

简介: vue-router4 |name的作用|query传参|parmas传参|动态路由参数|命名视图|别名alias|前置路由守卫|路由过渡效果|滚动行为

vue-router4 出现 No match found for location with path "/"

#### router/index.ts文件
import { createRouter, RouteRecordRaw, createWebHashHistory } from 'vue-router'
const routes: Array<RouteRecordRaw> = [
    {
        path: '/',
        name: 'home', //这里的name
        component:()=>import('../pages/test/test.vue')
    },
    {
        path: '/home',
        name: 'home', //这里的name
        component:()=>import('../pages/home/home.vue')
    },
]
const router = createRouter({
   history:createWebHashHistory(), //哈希值模式
    routes
})
// 暴露出去
export default router

出现问题的原因

在控制台出现,找不对应的路径 No match found for location with path "/"
在浏览器上出现空白页面。
是因为你的路由 name字段重复导致的。

vue-router中的name有什么作用呢?

1.路由中的name应该是唯一值,不应该重复。
router-link 中的to属性通过name的值可以进行路由跳转
<template>
  <router-link :to="{name:'home'}">去测试页面</router-link>
  <router-view></router-view>
</template>
const routes: Array<RouteRecordRaw> = [
    {
        path: '/home',
        name: 'home', //这个name应该是唯一值
        component:()=>import('../pages/home/home.vue')
    },
]

a标签的跳转与 router-link 的区别

a标签通过 <a href="/home">进行跳转的时候。
整个页面会重新刷新(左上角的圈圈会刷新),页面会闪一下
router-link 进行跳转的时候整个页面不会重新刷新 [页面不会闪一下]

跳转的时候不保留当前页面的历史记录 router.replace

就是说A页面跳转到B页面的时候。
不保留A页面的历史记录。我们可以通过router.replace('/b')

query 传递参数和接受参数

let paramsinfo = {
  name: 'zs',
  age:13
}
const gotosPage = () => { 
  router.push({
    path: '/home',
    query: paramsinfo
  })
}
query传递参数的时候是只能够是一个对象。
query传递参数的时候在地址栏会自动给你使用"?和&链接"
接受参数的时候通过 route.query.xxx

parmas 传递参数和接受参数

parmas传递参数的时候,不会在地址栏展示。
它是通过内存来传递参数的。
router.push({
    name:'你路由中的name',
    parmas:'是一个对象'
})
接受参数的时候
route.params.xxx
需要注意的是:由于它是通过内存来传递参数的,在接受页面刷新的时候,参数肯定会丢失的。
可以通过动态路由传递参数来解决

动态路由参数

#### index.ts文件
{
  path: '/',
  name: 'test',
  component:()=>import('../pages/test/test.vue')
},
{
  path: '/home/:idkey', //注意这里的idkey
  name: 'Home',
  component:()=>import('../pages/home/home.vue')
}
#### 跳转到home页面
const gotosPage = (mess) => { 
  router.push({
    name: 'Home',
    params: {
      //必须和路由路径中的idkey保持一致
      idkey: mess.id
    }
  })
}
#### 接受参数
import { useRoute } from 'vue-router'
let route = useRoute()
console.log(route.params.idkey)

动态路由参数的场景

当我们从列表页进入详情页的时候,
就可以使用动态路由参数来解决这个问题

命名视图

index.ts文件
{
  path: '/aa',
  name: 'Aa',
  component: () => import('../pages/aa/aa.vue'),
  children: [
    {
      path: '/user1',
      components: {
        default:()=> import("../components/user1.vue")
      }
    },
    {
      path: '/user2',
      components: {
        Bb2: () => import("../components/user2.vue"),
        Bb3:()=> import("../components/user3.vue")
      }
    }
  ]
}
aa.vue文件
<template>
  <div>
    <h2>父页面</h2>
    <router-link to="/user1" style="margin-right:10px">user1</router-link>
    <router-link to="/user2">user2</router-link>
    <router-view></router-view>
    <router-view name="Bb2"></router-view>
    <router-view name="Bb3"></router-view>
  </div>
</template>
当地址栏是user1的时候,默认展示的是user1这个页面。
当地址栏是user2的时候,默认展示的是user2和user2这两个页面

路由重定向 redirect

redirect的值可以是一个字符串,也可以是一个回调函数。
index.ts文件
{
  path: '/aa',
  name: 'Aa',
  //重定向到user1。并且携带了参数
  redirect: () => { 
    return {
      path: '/user1',
      query: {
          name:'zs'
      }
    }
  },
  component: () => import('../pages/aa/aa.vue'),
  children: [
      {
        path: '/user1',
        components: {
          default:()=> import("../components/user1.vue")
        }
      },
      {
        path: '/user2',
        components: {
          Bb2: () => import("../components/user2.vue"),
          Bb3:()=> import("../components/user3.vue")
        }
      }
  ]
},

别名alias

{
    path: '/',
    alias:['/a1','/a2'],
    name: 'test',
    component:()=>import('../pages/test/test.vue')
}
路径不同,但是访问的都是同一个组件。

前置路由守卫 (router.beforeEach) 设置title

main.ts文件
router.beforeEach((to,from,next) => { 
    document.title = to.meta.title
    next()
})
//有ts报错信息
不能将类型“unknown”分配给类型“string”。
在index.ts文件
//中定义路由title的类型
declare module 'vue-router' {
    interface RouteMeta{
        title:string
    }
}

路由过渡效果

animate.css的地址: https://animate.style/ 
第一步:下载  cnpm install animate.css --save
因为等会我们的动画效果将会使用这个库
第二步:在index.ts文件中设置动画样式
//这里我们使用的是 animate__fadeIn 渐入的效果
import { createRouter, RouteRecordRaw, createWebHashHistory } from 'vue-router'
// 定义类型
declare module 'vue-router' {
    interface RouteMeta{
        title: string,
        transition ?:string
    }
}
const routes: Array<RouteRecordRaw> = [
    {
        path: '/',
        name: 'test',
        meta: {
            title: '首页',
            //动画效果渐入
            transition:"animate__fadeIn",
        },
        component:()=>import('../pages/test/test.vue')
    },
]
const router = createRouter({
   history:createWebHashHistory(), //哈希值模式
    routes
})
// 暴露出去
export default router
第三步使用动画效果 app.vue文件中
<template>
  <router-view #default="{ route, Component }">
    <!-- 使用方法,在class里加上类animate__animated与任何动画名称一起添加到元素,此处为渐入的效果 -->
    <transition :enter-active-class="`animate__animated ${route.meta.transition}`">
      <component :is="Component"></component>
    </transition>
  </router-view>
</template>
<script lang="ts" setup>
//引入动画库
import 'animate.css';
</script>

滚动行为

A页面有滚动条,在距离顶部400px的地方。点击按钮前往了B页面。
当B页面做完一些操作后,返回A页面。滚动条仍然在400px的地方。
index.ts文件
const router = createRouter({
    history: createWebHashHistory(), //哈希值模式
    // 路由滚动
    scrollBehavior: (to, from, savePosition) => {
        // 记录滚动条滚动到的位置
        if (savePosition && savePosition.top) { 
          return savePosition
        } else {
          return {
            top:0
          }
        }
    },
    routes
})
scrollBehavior也是支持异步的
const router = createRouter({
    history: createWebHashHistory(), //哈希值模式
    // 路由滚动
    scrollBehavior: (to, from, savePosition) => {
        // 记录滚动条滚动到的位置
        return new Promise((resolve) => { 
            setTimeout(() => {
                resolve({
                    top:500
                })
            },1500)
        })
    },
    routes
})

遇见问题,这是你成长的机会,如果你能够解决,这就是收获。

相关文章
|
19天前
|
资源调度 JavaScript 前端开发
路由管理:Vue Router的使用和配置技巧
【10月更文挑战第21天】路由管理:Vue Router的使用和配置技巧
30 3
|
28天前
|
JavaScript API
vue 批量自动引入并注册组件或路由等等
【10月更文挑战第12天】 vue 批量自动引入并注册组件或路由等等
|
28天前
|
JavaScript 前端开发 API
vue3中常用插件的使用方法:按需引入自定义组件,自动导入依赖包,自动生成路由,自动生成模拟数据
vue3中常用插件的使用方法:按需引入自定义组件,自动导入依赖包,自动生成路由,自动生成模拟数据
524 0
|
28天前
|
JavaScript 前端开发 UED
vue中vue-router路由懒加载(按需加载)的作用以及常见的实现方法
vue中vue-router路由懒加载(按需加载)的作用以及常见的实现方法
149 1
|
1月前
|
JavaScript 前端开发 UED
|
1月前
|
JavaScript 前端开发 API
前端技术分享:Vue.js 动态路由与守卫
【10月更文挑战第1天】前端技术分享:Vue.js 动态路由与守卫
|
1月前
|
资源调度 JavaScript UED
如何使用Vue.js实现单页应用的路由功能
【10月更文挑战第1天】如何使用Vue.js实现单页应用的路由功能
|
17天前
|
JavaScript UED
"Vue实战技巧大揭秘:一招解决路由跳转页面不回顶部难题,让你的单页面应用用户体验飙升!"
【10月更文挑战第23天】在Vue单页面应用中,点击路由跳转时,默认情况下页面不会自动滚动到顶部,这可能影响用户体验。本文通过一个新闻网站的案例,介绍了如何使用Vue-router的全局前置守卫和`scrollBehavior`方法,实现路由跳转时页面自动滚动到顶部的功能,提升用户浏览体验。
52 0
|
1月前
|
JavaScript 前端开发
vue尚品汇商城项目-day01【4.完成非路由组件Header与Footer业务】
vue尚品汇商城项目-day01【4.完成非路由组件Header与Footer业务】
35 2
|
1月前
|
JavaScript 前端开发
vue尚品汇商城项目-day01【3.项目路由的分析】
vue尚品汇商城项目-day01【3.项目路由的分析】
30 1