Jump routing parameters vue

1 params parameter passing

Note ⚠️: params mass participation, the path can not be used path can only use the name, otherwise acquire data transfer of less than

this.$router.push({name: 'dispatch', params: {paicheNo: obj.paicheNo}})

 

Take data:. This $ route.params.paicheNo

2 query parameter passing

this.$router.push({path: '/transport/dispatch', query: {paicheNo: obj.paicheNo}})

Take data:. This $ route.query.paicheNo

Published 18 original articles · won praise 5 · Views 6726

Guess you like

Origin blog.csdn.net/qq_28687183/article/details/83623501