vue讓跳轉路由引數不在位址列顯示

2021-10-10 08:59:07 字數 789 閱讀 2393

src/router/index.js:路由配置 配置name

export default new router(,

//接收引數的頁面 注意這個name

]})

path方式跳轉

//簡寫不傳參

this.$router.push('/taskcenter')

//全寫傳參

this.$router.push(})

query獲取傳參

this.$route.query.name;

this.$route.query.name2;

name方式跳**push繫結的不再是path而是使用了你要傳送的頁面的name值

this.$router.push(})
param獲取傳參:

//router配置

去除vue路由跳轉位址列後的雜湊值

去除vue路由跳轉位址列後的雜湊值 我們只需要在路由跳轉的管理檔案router目錄下的index.js中加上一句 即可去掉雜湊值 全域性匯入樣式 每個元件都可以用 import statics site css style.css import vue from vue import vuerout...

獲取位址列引數

屬性描述 hash 從井號 開始的 url 錨 host 主機名和當前 url 的埠號 hostname 當前 url 的主機名 href 完整的 url pathname 當前 url 的路徑部分 port 當前 url 的埠號 protocol 當前 url 的協議 search 從問號 開始的...

獲取位址列引數

獲取位址列引數 var url window.location.href 獲取當前視窗的url 結果 獲取當前視窗的主機名 結果 localhost 61768 var port window.location.port 獲取當前視窗的埠 結果 61768 var pathname window.l...