溫馨提示×

溫馨提示×

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

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

vue.js中打開新頁面的方法

發(fā)布時間:2020-12-11 11:25:44 來源:億速云 閱讀:396 作者:小新 欄目:編程語言

這篇文章主要介紹vue.js中打開新頁面的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

vue.js中打開新頁面的方法:1、【router-link】跳轉(zhuǎn),代碼為【<router-link to="/detail/one">】;2、通過【this.$router.push】跳轉(zhuǎn)。

vue.js中打開新頁面的方法:

1.router-link跳轉(zhuǎn)

   // 直接寫上跳轉(zhuǎn)的地址
  <router-link to="/detail/one">
    <span class="spanfour" >link跳轉(zhuǎn)</span>
  </router-link>
  // 添加參數(shù)
  <router-link :to="{path:'/detail/two', query:{id:1,name:'vue'}}">
   </router-link>
  // 參數(shù)獲取
  id = this.$route.query.id
  // 新窗口打開
  <router-link :to="{path:'/detail/three', query:{id:1,name:'vue'}}" target="_blank">
  </router-link>
```javascript

2.this.$router.push跳轉(zhuǎn)

```javascript
toDeail (e) {
   this.$router.push({path: "/detail", query: {id: e}})
 }
 // 參數(shù)獲取
 id = this.$route.query.id
 
 toDeail (e) {
   this.$router.push({name: "/detail", params: {id: e}})
 }
 // 注意地址需寫在 name后面
 //參數(shù)獲取,params和query區(qū)別,query參數(shù)在地址欄顯示,params的參數(shù)不在地址欄顯示
 id = this.$route.params.id

3.this.$router.replace跳轉(zhuǎn)

//和push的區(qū)別,push有記錄一個history,replace沒有
 toDeail (e) {
   this.$router.replace({name: '/detail', params: {id: e}})
 }

4. resolve跳轉(zhuǎn)

  resolve頁面跳轉(zhuǎn)可用新頁面打開
 2.1.0版本后,使用路由對象的resolve方法解析路由,可以得到location、router、href等目標路由的信息。得到href就可以使用window.open開新窗口了(這邊應(yīng)用:https://segmentfault.com/q/1010000009557100下的一個回答)
 toDeail (e) {
   const new = this.$router.resolve({name: '/detail', params: {id: e}})
   window.open(new.href,'_blank')
 }

以上是“vue.js中打開新頁面的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

AI