当前位置: 首页 > article >正文

Vue 路由props 多路由参数时使用

传统路由参数获取

this.$route.query.id
this.$route.query.a
this.$route.query.b
this.$route.query.c
this.$route.query.d
this.$route.query.e
......

如果参数很多,特别麻烦

第一种接收parpas参数 使用props

http.www.csdn.net/123/321

   {
        name: 'user',
        path: '/user/:id/:age',
        component: User,
        props: true//
    }

为true路由会把所有params的参数,以props传给组件

user组件里获取

 <div>
     {{id}}
    {{age}}
  </div>

 props: ['id', 'age'],

第二种接收query参数 使用props

{
                name: 'user',
                path: '/user',
                component: User,
                props($route) { return { id: $route.query.id, age: $route.query.age } }
}
 {{id}}     
 {{age}}
 
 props: ['id', 'age'],

http://www.kler.cn/a/132748.html

相关文章:

  • 解决Windows远程桌面 “为安全考虑,已锁定该用户账户,原因是登录尝试或密码更改尝试过多。请稍后片刻再重试,或与系统管理员或技术支持联系“问题
  • Spring Boot教程之Spring Boot简介
  • PostgreSQL序列:创建、管理与高效应用指南
  • 爬虫——Requests库的使用
  • django解决跨域问题
  • http响应码https的区别
  • 电子商务、搜索引擎
  • Hafnium之内存共享
  • 流量1---------1
  • 新增文章分类
  • 「校园 Pie」 系列活动正式启航,首站走进南方科技大学!
  • 【AI视野·今日Robot 机器人论文速览 第六十三期】Thu, 26 Oct 2023
  • 【图论】最小生成树(python和cpp)
  • 【uniapp】Google Maps
  • js制作动态表单
  • PY32F002B从压缩包到实现串口printf输出
  • 解决:微软在登录时总是弹出需要家长或监护人同意才能使用该账户并且不断循环?
  • spire.pdf盖章(无水印免费无限制)
  • 【MySQL学习】C++外部调用
  • 【LeetCode刷题-双指针】--16.最接近的三数之和
  • 大师学SwiftUI第16章 - UIKit框架集成
  • 【Java 进阶篇】插上翅膀:JQuery 插件机制详解
  • docker中怎么启动容器
  • Nginx(六) Nginx location 匹配顺序及优先级深究(亲测有效)
  • P2239 [NOIP2014 普及组] 螺旋矩阵 题解
  • 机器学习和深度学习领域的算法和模型