真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

為甕安等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及甕安網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都做網(wǎng)站、成都網(wǎng)站建設(shè)、甕安網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!

背景

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

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

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

解決

使用路由對象的resolve方法解析路由,可以得到location、router、href等目標路由的信息。得到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

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

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

export default {
path: '/scoreplus',
name: 'scoreplus',
component: { template: '' },
redirect: { name: 'scoreplus-index' },
children: [
 {
 // 查看個人方案
 path: 'preview/:examSubjectID/:xuexinID/:recordsID/:constitute/:planID',
 name: 'score-preview',
 meta: { text: '個人方案' },
 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
 }
]
}

?編程式導航

1.router.push(location, onComplete?, onAbort?):想要導航到不同的 URL,則使用 router.push 方法。這個方法會向 history 棧添加一個新的記錄,所以,當用戶點擊瀏覽器后退按鈕時,則回到之前的 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)作為第二個和第三個參數(shù)。這些回調(diào)將會在導航成功完成 (在所有的異步鉤子被解析之后) 或終止 (導航到相同的路由、或在當前導航完成之前導航到另一個不同的路由) 的時候進行相應的調(diào)用。

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

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

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

User
router.push({ name: 'user', params: { userId: 123 }})

?重定向和別名

1.重定向(redirect):

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

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

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

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


新聞標題:Vue中如何在新窗口打開頁面及使用Vue-router
URL分享:http://weahome.cn/article/pidgds.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部