您好,登錄后才能下訂單哦!
前言
使用 Vue.js 做項(xiàng)目的時(shí)候,一個(gè)頁面是由多個(gè)組件構(gòu)成的,所以在跳轉(zhuǎn)頁面的時(shí)候,并不適合用傳統(tǒng)的 href,于是 vue-router 應(yīng)運(yùn)而生。
官方文檔: https://router.vuejs.org/zh-cn/essentials/getting-started.html
這次的實(shí)例主要實(shí)現(xiàn)下圖的效果:
項(xiàng)目結(jié)構(gòu):
一、配置 Router
用 vue-cli 創(chuàng)建的初始模板里面,并沒有 vue-router,需要通過 npm 安裝
cnpm i vue-router -D
安裝完成后,在 src 文件夾下,創(chuàng)建一個(gè) routers.js 文件,和 main.js 平級(jí)
然后在 router.js 中引入所需的組件,創(chuàng)建 routers 對(duì)象
import Home from './components/home.vue' const routers = [ { path: '/home', name: 'home', component: Home }, { path: '/', component: Home }, ] export default routers
在創(chuàng)建的 routers 對(duì)象中, path 配置了路由的路徑,component 配置了映射的組件
需要注意的是:export default routers 必須寫在文件底部,而且后面還需要接一空行,否則無法通過 ESlint 語法驗(yàn)證
然后 main.js 也需要修改:
import Vue from 'vue' import VueRouter from 'vue-router' import routers from './routers' import App from './App' Vue.use(VueRouter) const router = new VueRouter({ mode: 'history', routes: routers }) new Vue({ el: '#app', router, render: h => h(App) })
在創(chuàng)建的 router 對(duì)象中,如果不配置 mode,就會(huì)使用默認(rèn)的 hash 模式,該模式下會(huì)將路徑格式化為 #! 開頭。
添加 mode: 'history'
之后將使用 HTML5 history 模式,該模式下沒有 # 前綴,而且可以使用 pushState 和 replaceState 來管理記錄。
關(guān)于 HTML5 history 模式的更多內(nèi)容,可以參考官方文檔:https://router.vuejs.org/zh-cn/essentials/history-mode.html
二、嵌套路由
在這個(gè)實(shí)例中,為了加深項(xiàng)目層級(jí),App.vue 只是作為一個(gè)存放組件的容器:
其中 <router-view>
是用來渲染通過路由映射過來的組件,當(dāng)路徑更改時(shí), <router-view>
中的內(nèi)容也會(huì)發(fā)生更改
上面已經(jīng)配置了兩個(gè)路由,當(dāng)打開 http://localhost:8080 或者 http://localhost:8080/home 的時(shí)候,就會(huì)在 <router-view> 中渲染 home.vue 組件
home.vue 是真正的父組件,first.vue、login.vue 等子組件都會(huì)渲染到 home.vue 中的 <router-view>
如此一來,就需要在一級(jí)路由中嵌套二級(jí)路由,修改 routers.js
import Home from './components/home.vue' import First from './components/children/first.vue' import Login from './components/children/login.vue' const routers = [ { path: '/', component: Home, children: [ { path: '/', component: Login } ] }, { path: '/home', name: 'home', component: Home, children: [ { path: '/', name: 'login', component: Login }, { path: 'first', name: 'first', component: First } ] } ] export default routers
在配置的路由后面,添加 children,并在 children 中添加二級(jí)路由,就能實(shí)現(xiàn)路由嵌套
配置 path 的時(shí)候,以 " / " 開頭的嵌套路徑會(huì)被當(dāng)作根路徑,所以子路由的 path 不需要添加 " / "
三、使用 <router-link> 映射路由
home.vue 中引入了 header.vue 組件,其中含有導(dǎo)航菜單
當(dāng)點(diǎn)擊導(dǎo)航菜單的時(shí)候,會(huì)切換 home.vue 中 <router-view>
中的內(nèi)容
這種只需要跳轉(zhuǎn)頁面,不需要添加驗(yàn)證方法的情況,可以使用 <router-link>
來實(shí)現(xiàn)導(dǎo)航的功能:
在編譯之后, <router-link>
會(huì)被渲染為 <a> 標(biāo)簽, to 會(huì)被渲染為 href,當(dāng) <router-link>
被點(diǎn)擊的時(shí)候,url 會(huì)發(fā)生相應(yīng)的改變
如果使用 v-bind
指令,還可以在 to 后面接變量,配合 v-for 指令可以渲染導(dǎo)航菜單
如果對(duì)于所有 ID 各不相同的用戶,都要使用 home 組件來渲染,可以在 routers.js 中添加動(dòng)態(tài)參數(shù):
{ path: '/home/:id', component: Home }
這樣 "/home/user01"、"/home/user02"、"/home/user03" 等路由,都會(huì)映射到 Home 組件
然后還可以使用 $route.params.id
來獲取到對(duì)應(yīng)的 id
四、編程式導(dǎo)航
實(shí)際情況下,有很多按鈕在執(zhí)行跳轉(zhuǎn)之前,還會(huì)執(zhí)行一系列方法,這時(shí)可以使用 this.$router.push(location)
來修改 url,完成跳轉(zhuǎn)
push 后面可以是對(duì)象,也可以是字符串:
// 字符串 this.$router.push('/home/first') // 對(duì)象 this.$router.push({ path: '/home/first' }) // 命名的路由 this.$router.push({ name: 'home', params: { userId: wise }})
五、前車之鑒
在學(xué)習(xí)的過程中,遇到一個(gè)困擾許久的問題,大概是從 first 組件跳轉(zhuǎn)回 login 之后,無法再跳轉(zhuǎn)回去。但是 url 已經(jīng)被修改,刷新頁面也能正常顯示。
這是因?yàn)槲以?first.vue 組件中的 data 里面沒有寫 return
在 vue 組件中,data 必須寫為函數(shù),且需要用 return 來返回參數(shù)。但是當(dāng) data 為空時(shí),即使不寫 return 也不會(huì)報(bào)錯(cuò),所以導(dǎo)致了上面的問題。
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。