• vue 如何获取路由详细内容信息


    前言:

    vue 中路由(router)的功能就是:把 url 与 应用中的对应的组件进行关联,通过不同的 url 访问不同的组件。但是如果我们想要获取路由中的信息改如何做呢,今天我就给大家详细讲解一下如何获取路由的详细信息。


    路由(router)的信息:

    routes: [
        {
            path: '/',
            redirect:'login',
            name: '登录页',
            hidden:true,
            component: ()=>import("@/components/Login")
        },
        {
            path: '/login',
            name: 'login',
            hidden:true,
            component: ()=>import("@/components/Login")
        },
        {
            path: '/home',
            name: '学生管理',
            redirect:'/home/student',
            iconClass:'fa fa-users',
            component: () => import("@/components/Home"),
            children: [
                {
                    path: '/home/student',
                    name: '学生列表',
                    iconClass: 'fa fa-list',
                    component:()=>import('@/components/students/StudentList')
                },
                {
                    path: '/home/info',
                    name: '信息列表',
                    iconClass: 'fa fa-list-alt',
                    component:()=>import('@/components/students/InfoList')
                },
                {
                    path: '/home/infos',
                    name: '信息管理',
                    iconClass: 'fa fa-list-alt',
                    component:()=>import('@/components/students/InfoLists')
                },
                {
                    path: '/home/work',
                    name: '作业列表',
                    iconClass: 'fa fa-list-ul',
                    component:()=>import('@/components/students/WorkList')
                },
                {
                    path: '/home/words',
                    name: '作业管理',
                    iconClass: 'fa fa-th-list',
                    component:()=>import('@/components/students/WorkMenu')
                },
            ]
        },
        {
            path: '/home',
            name: '数据分析',
            redirect:'/home/dataview',
            iconClass: 'fa fa-bar-chart',
            component: () => import("@/components/Home"),
            children: [
                {
                    path: '/home/dataview',
                    name: '数据概览',
                    iconClass: 'fa fa-line-chart',
                    component:()=>import('@/components/dataAnalysis/DataView')
                },
                {
                    path: '/home/mapview',
                    name: '地图概览',
                    iconClass: 'fa fa-line-chart',
                    component:()=>import('@/components/dataAnalysis/MapView')
                },
                {
                    path: '/home/score',
                    name: '分数地图',
                    iconClass: 'fa fa-line-chart',
                    component:()=>import('@/components/dataAnalysis/ScoreMap')
                },
                {
                    path: '/home/travel',
                    name: '旅游地图',
                    iconClass: 'fa fa-line-chart',
                    component:()=>import('@/components/dataAnalysis/TravelMap')
                },
            ]
        },
    
        {
            path: '/users',
            name: '用户中心',
            iconClass: 'fa fa-user',
            component: () => import("@/components/Home.vue"),
            children: [
                {
                    path: '/users/user',
                    name: '权限管理',
                    iconClass: 'fa fa-user',
                    component: () => import("@/components/user/User.vue"),
                }
            ]
        },
    
        {
            path: '*',
            name: 'NotFound',
            hidden:true,
            component: ()=>import("@/components/NotFound")
        },
    ],
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109

    获取路由的所有信息

    动态添加路由使用 router.addRoutes(vue-router3.x版本方法,已废弃)
    后续使用:router.addRoute(进行动态路由添加)

    this.$router.options.routes
    
    • 1

    获取到的值为:
    在这里插入图片描述

    获取路由中每个信息的单个值

    如果想要获取到路由信息中的单个值则代码为:

    this.$router.options.routes.map((item) => {
      console.log(item.name);
    });
    
    • 1
    • 2
    • 3

    获取到的值为:
    在这里插入图片描述

    获取路由中需要显示的值

    根据路由信息中 hidden 的值是否为** true** 为 true 则不显示,为 false 则显示

    this.$router.options.routes.map((item) => {
      if (item.hidden !== true) {
        console.log(item.name);
      }
    });
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在这里插入图片描述


    总结:

    以上就是 vue 如何获取路由信息的讲解和代码,不懂得也可以在评论区里问我或私聊我询问,以后会持续发布一些新的功能,敬请关注。
    我的其他文章:https://blog.csdn.net/weixin_62897746?type=blog

  • 相关阅读:
    decompose transformation matrix
    单调栈的性质和使用场景
    蓝桥杯打卡Day8
    orm连接mysql
    mysql 问题解答 2
    采用Nexus搭建Maven私服
    多个服务器的用户共享同一个用户目录的做法
    Flutter实战-请求封装(四)之gzip报文压缩
    【教3妹学算法】144. 二叉树的前序遍历
    仓库管理无纸化,WMS仓库管理软件+条形码技术
  • 原文地址:https://blog.csdn.net/weixin_62897746/article/details/128213949