vue-router-4-編程式導航
阿新 • • 發佈:2017-10-10
三個參數 bsp location 完整 參數 war register rep cat
想要導航到不同的 URL,用 router.push
方法,會向 history 棧添加一個新的記錄
<router-link> 《==》router.push
// 字符串 router.push(‘home‘) // 命名的路由 router.push({ name: ‘user‘, params: { userId: 123 }}) // 對象 router.push({ path: ‘home‘ }) // 帶查詢參數,變成 /register?plan=private router.push({ path: ‘register‘, query: { plan: ‘private‘ }})
//如果提供了 path,params 會被忽略,需完整設置路徑: const userId = 123; router.push({ name: ‘user‘, params: { userId }}) // -> /user/123 router.push({ path: `/user/${userId}` }) // -> /user/123
//在 router.push 或 router.replace 中提供 onComplete 和 onAbort 回調作為第二個和第三個參數 router.push(location, onComplete?, onAbort?)//導航成功完成或中止時router.replace(location, onComplete?, onAbort?) //replace它不會向 history 添加新記錄 <router-link :to="..." replace> 《==》 router.replace(...)
router.go(n) // 在瀏覽器記錄中前進一步,等同於 history.forward() router.go(1) // 後退一步記錄,等同於 history.back() router.go(-1) // 前進 3 步記錄 router.go(3) // 如果 history 記錄不夠用,那就默默地失敗唄 router.go(-100) router.go(100)
vue-router-4-編程式導航