VUE複習筆記30(vue-router詳解進階)
導航路由
有時候通過一個名稱來表示路由會顯得方便一些,特別是在連結路由或者執行跳轉的時候,我們可以在建立 Router
例項的時候。在其中配置給某個路由設定名稱。
const router = new VueRouter({
routes: [
{
path: '/user/:userId',
name: 'user',
component: User
}
]
})
如果我們想連結到一個命名路由,可以給router-link
的to
屬性傳遞一個物件
<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link>
以上這段程式碼和呼叫 route.push()是一回事
router.push({ name: 'user', params: { userId: 123 }})
這兩種方式都會把路由導航到 /user/123
路徑。
命名檢視
有時候想同時展示多個同級的檢視,而不是巢狀展示。
假如我們現在有個 sidebar(側邊欄)和main(主檢視)兩部分,這時候命名檢視就派上用場了。我們可以在介面中擁有多個單獨命名的檢視,而不是隻有一個單獨的出口,如果 router-view
沒有設定名字,那麼預設為 default
。也就是單獨出口。
<router-view class="view one"></router-view>
<router-view class="view two" name="a"></router-view>
<router-view class="view three" name="b"></router-view>
一個檢視使用一個元件渲染,因此對於同個路由,多個檢視就需要多個元件。確保正確使用 components
配置 (帶上 s):
{
path:'/',
name:'home',
components:{
default:Foo,
a:Bar,
b:Baz
}
}
這樣的話,3個元件都可以同級顯示,foo對應default,bar對應a,baz對應b
重定向
重定向也是通過 routes
配置來完成的,下面例子是從 a
重定向到 b
const router = new VueRouter({
routes: [
{ path: '/a', redirect: '/b' }
]
})
但是這裡需要注意,/b
一定要一定在路由中定義設定好component
了,否則是不會生效找不到路徑的。
重定向的目標也可以是一個命名的路由:
const router = new VueRouter({
routes: [
{ path: '/a', redirect: { name: 'foo' }}
]
})
甚至我們還可以使用一個方法動態返回重定向目標。
const router = new VueRouter({
routes: [
{ path: '/a', redirect: to => {
// 方法接收 目標路由 作為引數
// return 重定向的 字串路徑/路徑物件
}}
]
})
別名
“重定向”的意思是,當使用者訪問 /a時,URL 將會被替換成 /b,然後匹配路由為 /b,那麼“別名”又是什麼呢?
/a 的別名是 /b,意味著,當使用者訪問 /b 時,URL 會保持為 /b,但是路由匹配則為 /a,就像使用者訪問 /a 一樣。也就是說,別名是隻修改了名字,真是路徑沒有發生改變。
const router = new VueRouter({
routes: [
{ path: '/a', component: A, alias: '/b' }
]
})
這裡需要指定好 /a 的路徑和對應元件,然後再指定他的別名就行了。
“別名”的功能讓你可以自由地將 UI 結構對映到任意的 URL,而不是受限於配置的巢狀路由結構。
路由元件傳參
在元件中使用$route
會使之與其對應路由形成高度耦合,從而使元件只能在某些特定的 URL 上使用,限制了其靈活性。
使用 props
將元件和路由解耦:
這是原來的用法
const User = {
template: '<div>User {{ $route.params.id }}</div>'
}
const router = new VueRouter({
routes: [
{ path: '/user/:id', component: User }
]
})
通過props
解耦
const User = {
props: ['id'],
template: '<div>User {{ id }}</div>'
}
const router = new VueRouter({
routes: [
{ path: '/user/:id', component: User, props: true },
// 對於包含命名檢視的路由,你必須分別為每個命名檢視新增 `props` 選項:
{
path: '/user/:id',
components: { default: User, sidebar: Sidebar },
props: { default: true, sidebar: false }
}
]
})
這樣你便可以在任何地方使用該元件,使得該元件更易於重用和測試。
布林模式
如果 props
被設定為 true
,route.params
將會被設定為元件屬性。
物件模式
如果 props 是一個物件,它會被按原樣設定為元件屬性。當 props 是靜態的時候有用。
const router = new VueRouter({
routes: [
{ path: '/promotion/from-newsletter', component: Promotion, props: { newsletterPopup: false } }
]
})
函式模式
你可以建立一個函式返回 props。這樣你便可以將引數轉換成另一種型別,將靜態值與基於路由的值結合等等。
const router = new VueRouter({
routes: [
{ path: '/search', component: SearchUser, props: (route) => ({ query: route.query.q }) }
]
})
URL /search?q=vue 會將 {query: 'vue'} 作為屬性傳遞給 SearchUser 元件。
請儘可能保持 props 函式為無狀態的,因為它只會在路由發生變化時起作用。如果你需要狀態來定義 props,請使用包裝元件,這樣 Vue 才可以對狀態變化做出反應。
相關文章
- Vue-Router學習筆記Vue筆記
- 學習筆記《vue-router》筆記Vue
- vue2.0 vue-router學習筆記Vue筆記
- Vue-Router基礎學習筆記Vue筆記
- vue-router筆記Vue筆記
- vue2進階篇:vue-router之命名路由Vue路由
- VC++深入詳解--之複習筆記(一)C++筆記
- VC++深入詳解--之複習筆記(二)C++筆記
- Go 進階學習筆記Go筆記
- Swift進階學習筆記Swift筆記
- Git進階學習筆記Git筆記
- vue從入門到進階:vue-router路由功能(九)Vue路由
- [Vue.js進階]從原始碼角度剖析vue-router(上)Vue.js原始碼
- vue2.0學習筆記(八):vue-router 路由配置(1)–基礎篇Vue筆記路由
- Vue 進階教程之:詳解 v-modelVue
- 進階筆記筆記
- python進階學習筆記(一)Python筆記
- Koa2進階學習筆記筆記
- 線段樹進階 學習筆記筆記
- redis學習筆記(詳細)——高階篇Redis筆記
- Python學習筆記(進階篇一)Python筆記
- spark學習筆記--進階程式設計Spark筆記程式設計
- vue-router的hash模式和history模式詳解Vue模式
- flaskr 進階筆記Flask筆記
- Arthas進階-筆記筆記
- Go學習筆記-GMP詳解Go筆記
- Redis 複習筆記Redis筆記
- MyBatis複習筆記MyBatis筆記
- Redux 進階 – react 全家桶學習筆記(二)ReduxReact筆記
- Redux 進階 - react 全家桶學習筆記(二)ReduxReact筆記
- XML初學進階學習筆記(1)(轉)XML筆記
- XML初學進階學習筆記(5)(轉)XML筆記
- XML初學進階學習筆記(4)(轉)XML筆記
- XML初學進階學習筆記(3)(轉)XML筆記
- XML初學進階學習筆記(2)(轉)XML筆記
- vue3 學習筆記 (四)——vue3 setup() 高階用法Vue筆記
- vue學習筆記Vue筆記
- Vue 學習筆記Vue筆記