香港云服务器vue路由如何传参

已关闭留言

在香港云服务器vue中实现路由传参的具体方法如下:

1.通过params实现路由传参

使用路由属性中的name来匹配路由,在通过params传递参数,但页面刷新数据会丢失。

methods{

insurance(id) {

this.$router.push({

name: ‘particulars’,

params: {

id: id

}

})

}

2.通过query实现路由传参

使用path来匹配路由,在通过query传递参数。

methods{

insurance(id) {

this.$router.push({

path: ‘/particulars’,

query: {

id: id

}

})

}

3.调用$router.push实现路由传参

直接调用$router.push携带参数的跳转,且页面刷新数据不会丢失。

methods{

insurance(id) {

this.$router.push({

path: `/particulars/${id}`,

})

}