1.query,顯示在導航欄?后,相當于get請求傳參
this.router.push({path:'/login',query:{ 'redirect':'/home'}})
this.router.push({name:'Login',query:{ 'redirect':'/home'}})
2.parmas,不會顯示,相當于post請求傳參, 目前測試沒有query不行,而且刷新后消失
this.router.push({name:'Login',parmas:{ 'redirect':'/home'}})
this.router.push({name:'Login',query:{ 'redirect':'/home'}},parmas:{ 'redirect':'/home'}})
在vue中使用parmas傳參時必須用name跳轉,而且必須和query一起傳?否則接收不到;或者路由中有設置/:XX來接收這個參數
3.meta,不顯示,測試失敗
this.router.push({name:'Login',meta:{ 'redirect':'/home'}})