vue 關於路由跳轉方法
阿新 • • 發佈:2019-02-12
關於路由跳轉方法:push
this.$router.push({name:'master',params:{id:'引數'}});
//name和params搭配,重新整理的話,引數會消失
this.$router.push({path:'/master',query:{id:'引數'}});
//path和query搭配,重新整理頁面的話,url中的引數不會丟失,query中的引數成了url中的一部分
vue-router 2.0 常用基礎知識點之router.push()
除了使用 建立 a 標籤來定義導航連結,我們還可以藉助 router 的例項方法,通過編寫程式碼來實現。
想要導航到不同的 URL,則使用 router.push 方法。這個方法會向 history 棧新增一個新的記錄,所以,當用戶點選瀏覽器後退按鈕時,則回到之前的 URL。
當你點選 <router-link>
<router-link :to="...">
等同於呼叫 router.push(...)
。
宣告式:
程式設計式:router.push(…)
該方法的引數可以是一個字串路徑,或者一個描述地址的物件。
// 字串
router.push('home')
// 物件
this.$router.push({path: '/login?url=' + this.$route.path});
// 命名的路由
router.push({ name: 'user', params: { userId: 123 }})
// 帶查詢引數,變成/backend/order?selected=2
this.$router.push({path: '/backend/order', query: {selected: "2"}});
// 設定查詢引數
this.$http.post('v1/user/select-stage', {stage: stage})
.then(({data: {code, content}}) => {
if (code === 0) {
// 物件
this.$router.push({path: '/home'});
}else if(code === 10){
// 帶查詢引數,變成/login?stage=stage
this.$router.push({path: '/login', query:{stage: stage}});
}
});
// 設計查詢引數物件
let queryData = {};
if (this.$route.query.stage) {
queryData.stage = this.$route.query.stage;
}
if (this.$route.query.url) {
queryData.url = this.$route.query.url;
}
this.$router.push({path: '/my/profile', query: queryData});
replace
型別: boolean
預設值: false
設定 replace 屬性的話,當點選時,會呼叫 router.replace() 而不是 router.push(),於是導航後不會留下 history 記錄。即使點選返回按鈕也不會回到這個頁面。
//加上replace: true後,它不會向 history 新增新記錄,而是跟它的方法名一樣 —— 替換掉當前的 history 記錄。
this.$router.push({path: '/home', replace: true})
//如果是宣告式就是像下面這樣寫:
<router-link :to="..." replace></router-link>
// 程式設計式:
router.replace(...)
案例
this.$router.push({path: '/coach/' + this.$route.params.id, query: queryData});
this.$router.push、replace、go的區別
1, this.$router.push()
跳轉到不同的url,但這個方法迴向history棧新增一個記錄,點選後退會返回到上一個頁面。
- 用法:
// 字串
router.push('home')
// 物件
this.$router.push({path: 'home'})
//命名的路由
this.$router.push({name: 'user', params: {userId: 123}})
// 帶查詢引數,變成/register?plan=private
this.$router.push({path: 'register', query: {plan: "private"}});
2, this.$router.replace()
描述:同樣是跳轉到指定的url,但是這個方法不會向history裡面新增新的記錄,點選返回,會跳轉到上上一個頁面。上一個記錄是不存在的。
3, this.$router.go(n)
相對於當前頁面向前或向後跳轉多少個頁面,類似 window.history.go(n)。n可為正數可為負數。正數返回上一個頁面