1. query
// route/index.js路由配置檔案
// 跳轉源頁面
this.$router.push(
})// 跳轉後頁面獲取引數物件
this.$route.query
2. params
// route/index.js路由配置檔案
// 跳轉源頁面
this.$router.push(
})// 跳轉後頁面獲取引數物件
this.$route.params
3. 動態路由方式
// route/index.js路由配置檔案
// 跳轉源頁面
var id = 1;
this.$router.push('/detail/'+id)
//跳轉後頁面獲取引數
this.$route.params.id
總結:
1. 重新整理頁面params方式會丟失屬性值,動態路由和query方式不會丟失
2. 動態路由一般用來傳乙個引數(如詳情頁id)
vue三種頁面跳轉傳參方法
1 push方法 跳轉傳參 query傳參 引數會在鏈結後面顯示 this router.push params傳參 引數不會顯示在鏈結後面this router.push params傳參要用name 不能用path 切記!接受引數 this.route.params 和 this.route.q...
vue路由傳參並跳轉頁面
方式一 query傳參 傳參 go 跳轉後頁面取參 mounted but 瀏覽器位址列中顯示如下,所以如果引數保密,該方式慎用啦 方式二 parms傳參 傳參 go 跳轉後頁面取參 mounted 是的就是這麼相似,但是傳遞的引數就不會顯示在位址列了,但是有沒有注意到跳轉路徑的name值必傳是不是...
vue路由傳參三種方式
vue路由傳參分為三種方式 url形如 http localhost 8080 path 1 true 1 方法中使用模板字串 methods 2 在路由配置檔案中進行引數名配置 3 子頁面通過params接收引數 export default test02 created this console...