vue routing parameters and parameter taken

1, written in html

<router-link :to="{path:'/goldShop/goodsInfo',query: { id:item.id }}" class="swiperBG">

2, written in js

this.$router.push({
   path: '/goldShop/allGoods'
 })
 this.$router.push({
    path:`/goldShop/payInfo`,
    query:{id:this.id,num:this.num}//带参
  })
console.log(this.$route.query.id);//取值

Guess you like

Origin www.cnblogs.com/chenluqing/p/11428894.html