1. 程式人生 > >vue路由傳參query和params的區別

vue路由傳參query和params的區別

get bsp post tro 顯示 安全 建議 gpo ron

1、用法

A、query要用path來引入(用name來引入也可以),接收參數都是this.$route.query.name。

B、params要用name來引入,接收參數都是this.$route.params.name。

2、效果

A、query類似於ajax中get傳參,即在瀏覽器地址欄中顯示參數。

B、params則類似於post,即在瀏覽器地址欄中不顯示參數。

3、個人建議

在路由傳參上建議使用params,以隱藏參數,做好安全保密。

vue路由傳參query和params的區別