1.this.$route.query的使用
(1)、传参数:
this.$router.push({
path: '/checkout',
query:{
productId:id,
}
})
(2)、获取参数:
this.$route.query.productId
(3)、在url中形式(url中带参数)
http://xxx/#/goodsDetails?productId=150642571432849
2.this.$route.params的使用
(1)、传参数:
this.$router.push({
name: 'checkout',
params:{
productId:id,
}
});
(2)、获取参数:
// An highlighted block
this.$route.params.productId
(3)、在url中形式(url中不带参数)
http://172.19.186.255:8080/#/checkout