4-6.vue-router的this.$router和this.$route
this.$router的含義
官方解釋:通過在 Vue 根例項的 router 配置傳入 router 例項。
this.$router可以看成是一個全域性的路由物件,它能夠在任何元件中使用。一般是用來做自定義的程式碼跳轉,與router-link具有相同的功能
this.$router的使用
1.程式碼展示
<template>
<div id="nav">
<button @click='jumpHome'>home</button>
<button @click='jumpAbout'>about</button>
</div>
<router-view />
</template>
<script>
export default {
name: 'App',
methods: {
jumpHome() {
// 這個相當於router-link最普通的用法
this.$router.push('Home');
},
jumpAbout() {
// 這個相當於router-link加了一個replace屬性
this.$router.replace('About');
}
}
}
</script>
<style>
</style>
2.過程分解
this.$router實現帶引數的寫法
1.程式碼展示
<template>
<div id="nav">
<button @click='jumpHome'>home</button>
<button @click='jumpAbout'>about</button>
</div>
<router-view />
</template>
<script>
export default {
name: 'App',
methods: {
jumpHome() {
// 這個相當於router-link最普通的用法
this.$router.push({path:'Home', query:{name: '張三'}});
},
jumpAbout() {
// 這個相當於router-link加了一個replace屬性
this.$router.replace({name:'About', params:{userId: '123'}});
}
}
}
</script>
<style>
</style>
2.過程分解
對比router-link的to屬性,對比著使用即可,只是換了一個實現規則,檢視router-link的to屬性使用連線:https://blog.csdn.net/weixin_45660035/article/details/111457630
this.$route的含義
表示當前啟用的路由物件,一般用來接收傳遞過來的資料。獲取當前的路由路徑等。
1.程式碼展示
配置頁面:
import { createRouter, createWebHistory } from 'vue-router'
const Home = () => import('../views/Home.vue')
const About = () => import('../views/About.vue')
const routes = [
{
path: '/Home',
component: Home
},
{
path: '/About/:userId',
name: 'About',
component: About
}
]
const router = createRouter({
history: createWebHistory(process.env.BASE_URL),
routes
})
export default router
home元件:
<template>
<div class="">
<p>這是home頁面,獲取query方式傳遞的name值:{{this.$route.query.name}}</p>
</div>
</template>
<script>
export default {
name: 'Home',
}
</script>
about元件:
<template>
<div class="about">
<h1>這是about頁面,獲取params方式傳遞的userId值:{{this.$route.params.userId}}</h1>
</div>
</template>
<script>
export default {
name: 'About',
}
</script>
2.注意重點
- 引數的傳遞有兩種方式query和params這兩種,params方式只能和name屬性匹配,不然會出錯,query方式可以和path還有name屬性匹配。看上面程式碼時一定要注意這兩者在匹配頁面在js上面的區別;
- query和params在傳遞引數後接收方式分別為this.$route.query.name和this.$route.params.userId;
- 在推薦傳遞傾向使用query封裝成物件去取。
3.其他方法
this.$route.path:字串,對應當前路由的絕對路徑
相關文章
- vue之this.$router.push頁面重新整理問題Vue
- this.$toast() 瞭解一下?AST
- vue專案中如何使用this.$confirmVue
- vue 中this.$emit()的返回值是什麼?VueMIT
- vue 父子元件傳值報錯:this.$emit is not a function 解決Vue元件MITFunction
- vue什麼情況下需要用到this.$nextTickVue
- vue+typescript+iview表單驗證 this.$refs獲取問題VueTypeScriptView
- 【前端大概一分鐘】vue騷操作之this.$options.data()前端Vue
- 筆記2:vue元件傳值--子傳父(利用this.$emit)--比小白還白的理解筆記Vue元件MIT
- vue-router元件複用共享$route的問題Vue元件
- 為 react-router 寫一個可以快取的 RouteReact快取
- 2024-07-29 如何判斷自定義元件中的slot是否被傳入值==》defineSlots或this.$slots元件
- 由React Router引起的元件重複渲染談Route的使用姿勢React元件
- Flutter中的Navigator和RouteFlutter
- Express Route的配置Express
- 3.3.1 - Laravel - 5.6 - Route - 路由物件Route的建立過程Laravel路由物件
- 使用 Route macro 來定義 Route 的新方法Mac
- angular routeAngular
- 這不是魔法:Flask和@app.route(2)FlaskAPP
- 這不是魔法:Flask和@app.route(1)FlaskAPP
- 3.3 - Laravel - 5.6 - Route - 載入單個Route例項的主要流程Laravel
- CI框架原始碼解讀--ROUTE和URL類框架原始碼
- vue-routeVue
- laravel named routeLaravel
- Laravel7.0 Route::get ()->name ('home') route ('home') 報錯Laravel
- 一根Express Route同時支援ARM和ASM的VNETExpressASM
- vue-router的hash模式和history模式詳解Vue模式
- vue-router的router.go(n)問題?VueGo
- 使用webpack建立vue專案,安裝vue-router和不安裝vue-router的區別WebVue
- Hybris UI的Route(路由)實現UI路由
- laravel8 routeLaravel
- mysql route安裝MySql
- next-route
- vue-router的基本框架及寫法,router-view與router-linkVue框架View
- 實現自己的Vue Router -- Vue Router原理解析Vue
- Vue-router 中hash模式和history模式的區別Vue模式
- 使用亞馬遜的Route53服務亞馬遜
- vue-router 重定向和別名 理解Vue