溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vue中如何在新窗口打開頁面及使用Vue-router

發(fā)布時(shí)間:2021-07-24 14:52:23 來源:億速云 閱讀:769 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)Vue中如何在新窗口打開頁面及使用Vue-router,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

背景

在開發(fā)提分加項(xiàng)目的過程中,遇到了點(diǎn)擊下拉菜單時(shí)在新窗口中打開頁面,由于之前一直做的是單頁面應(yīng)用,沒有碰到過類似的需求,于是上網(wǎng)搜了一下解決辦法,也再次系統(tǒng)地溫習(xí)了一下vue-router。

Vue中如何在新窗口打開頁面及使用Vue-router

Vue中如何在新窗口打開頁面及使用Vue-router

解決

使用路由對象的resolve方法解析路由,可以得到location、router、href等目標(biāo)路由的信息。得到href就可以使用window.open開新窗口了。

const {href} = this.$router.resolve({
 name: "statistics-explain",
 params: {
 classID: id,
 examSubjectID: this.planClassData.examSubjectID,
 studentStatus: 0
 }
});
window.open(href, '_blank');

延伸

參考文章:Vue Router

?動(dòng)態(tài)路由匹配:一個(gè)“路徑參數(shù)”使用冒號:標(biāo)記。當(dāng)匹配到一個(gè)路由時(shí),參數(shù)值會被設(shè)置到this.$route.params,可以在每個(gè)組件內(nèi)使用。

?嵌套路由:要在嵌套的出口中渲染組件,需要在 VueRouter 的參數(shù)中使用 children 配置,要注意,以 / 開頭的嵌套路徑會被當(dāng)作根路徑。 這讓你充分的使用嵌套組件而無須設(shè)置嵌套的路徑。

export default {
path: '/scoreplus',
name: 'scoreplus',
component: { template: '<router-view />' },
redirect: { name: 'scoreplus-index' },
children: [
 {
 // 查看個(gè)人方案
 path: 'preview/:examSubjectID/:xuexinID/:recordsID/:constitute/:planID',
 name: 'score-preview',
 meta: { text: '個(gè)人方案' },
 component: ScorePreview
 },
 {
 // 查看方案內(nèi)容
 path: 'planList/:planID',
 name: 'score-plan-list',
 meta: { text: '查看方案內(nèi)容' },
 component: ScorePlanList
 },
 {
 // 下載方案內(nèi)容
 path: 'download/:planID/:classID',
 name: 'score-download-list',
 meta: { text: '下載方案內(nèi)容' },
 component: DownloadList
 },
 {
 // 查看推送試題
 path: 'push/:planID/:level',
 name: 'score-question-push',
 meta: { text: '查看推送試題' },
 component: QuestionPush
 },
 {
 // 提分方案首頁
 path: '',
 name: 'scoreplus-index',
 component: ScoreIndex
 }
]
}

?編程式導(dǎo)航

1.router.push(location, onComplete?, onAbort?):想要導(dǎo)航到不同的 URL,則使用 router.push 方法。這個(gè)方法會向 history 棧添加一個(gè)新的記錄,所以,當(dāng)用戶點(diǎn)擊瀏覽器后退按鈕時(shí),則回到之前的 URL。

// 字符串
router.push('home')
// 對象
router.push({ path: 'home' })
// 命名的路由
router.push({ name: 'user', params: { userId: 123 }})
// 帶查詢參數(shù),變成 /register?plan=private
router.push({ path: 'register', query: { plan: 'private' }})

在 2.2.0+,可選的在 router.push 或 router.replace 中提供 onComplete 和 onAbort 回調(diào)作為第二個(gè)和第三個(gè)參數(shù)。這些回調(diào)將會在導(dǎo)航成功完成 (在所有的異步鉤子被解析之后) 或終止 (導(dǎo)航到相同的路由、或在當(dāng)前導(dǎo)航完成之前導(dǎo)航到另一個(gè)不同的路由) 的時(shí)候進(jìn)行相應(yīng)的調(diào)用。

2.router.replace(location, onComplete?, onAbort?):跟 router.push 很像,唯一的不同就是,它不會向 history 添加新記錄,而是跟它的方法名一樣 —— 替換掉當(dāng)前的 history 記錄。

3.router.go(n):這個(gè)方法的參數(shù)是一個(gè)整數(shù),意思是在 history 記錄中向前或者后退多少步,類似 window.history.go(n)。

?命名路由:可以在創(chuàng)建 Router 實(shí)例的時(shí)候,在 routes 配置中給某個(gè)路由設(shè)置名稱。要鏈接到一個(gè)命名路由,可以給 router-link 的 to 屬性傳一個(gè)對象。

<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link>
router.push({ name: 'user', params: { userId: 123 }})

?重定向和別名

1.重定向(redirect):

 const router = new VueRouter({
 routes: [
 { path: '/a', redirect: '/b' }
 ]
 })

2.別名:/a 的別名是 /b,意味著,當(dāng)用戶訪問 /b 時(shí),URL 會保持為 /b,但是路由匹配則為 /a,就像用戶訪問 /a 一樣。

 const router = new VueRouter({
 routes: [
 { path: '/a', component: A, alias: '/b' }
 ]
 })

關(guān)于“Vue中如何在新窗口打開頁面及使用Vue-router”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI