動態傳參(補)

query:緩存

this.router.push({
    path:'/xxx',query:{id:id}
})
 接受參數: this.route.query.idpost

params:this

this.$router.push({ name:'路由名稱',params:{id:id} }).net

接受參數:this.$route.params.id3d

params傳參,push只能是name:'xxx',不能是pathrouter

兩者還有一點區別就是 query至關於get請求地址欄能夠看到請求參數, params至關於post參數在地址欄不會顯示路由

js: get請求會有緩存 post從新請求 get請求大小2kbget

相關文章
相關標籤/搜索