赞
踩
总结:params传参时,用name标志路由
query传参时用path标志路由
name query
name params
path query
一.Params (隐式)
由于动态路由也是传递params的。
在 this.$router.push() 方法中 path不能和params一起使用,否则params将无效。
需要用name来指定页面,即通过路由配置的name属性访问。
配路由:
路由跳转:
取值:$this.route.params.yysId
二.Query(显式)
//query传参:用path和name均可
路由跳转:
取值
this.$route.query
三.router route
1.取参数this.$route.name、path、query、params
2.JS路由跳转 this.$router.push({
name:"",
params:{userId:Id}
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。