vue路由传值的几种方法及区别
vue路由传值对应的路由配置模块, {path: '/editCardetail',name: 'editCardetail',component: EditCardetail},1、使用$router.push 拼接参数传参this.$router.push('/editCardetail?editType=add')其中ed...
vue路由传值
对应的路由配置模块
, {
path: '/editCardetail',
name: 'editCardetail',
component: EditCardetail
},
1、使用$router.push 拼接参数传参
this.$router.push('/editCardetail?editType=add')
其中editType=add即为传递的参数
2、 使用name来确定匹配的路由,通过params来传递参数
this.$router.push({
name: 'editCardetail',
params: {
editType: add
}
})
3、使用path来匹配路由,然后通过query来传递参数
this.$router.push({
path: '/editCardetail',
query: {
editType: add
}
})
注意path不能与params一起使用,需要通过path来匹配路由的时候,使用query来传参。
query要用path来引入,params要用name来引入,接收参数都是类似的,分别是this.
r
o
u
t
e
.
q
u
e
r
y
.
n
a
m
e
和
t
h
i
s
.
route.query.name和this.
route.query.name和this.route.params.name。
query更加类似于我们ajax中get传参,params则类似于post,前者在浏览器地址栏中显示参数,后者则不显示
更多推荐
所有评论(0)