溫馨提示×

溫馨提示×

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

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

vue怎樣實(shí)現(xiàn)從A頁面跳轉(zhuǎn)到B頁面

發(fā)布時(shí)間:2021-09-13 07:32:50 來源:億速云 閱讀:208 作者:chen 欄目:編程語言

本篇內(nèi)容介紹了“vue怎樣實(shí)現(xiàn)從A頁面跳轉(zhuǎn)到B頁面”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

本文操作環(huán)境:windows7系統(tǒng)、Vue2.9.6版,DELL G3電腦。

vue怎么實(shí)現(xiàn)A頁面跳轉(zhuǎn)到B頁面?

vue 從A界面跳轉(zhuǎn)到B界面并攜帶參數(shù)

最近遇到一個(gè)需求,需要從A界面點(diǎn)擊一個(gè)按鈕跳轉(zhuǎn)到B界面,并且攜帶參數(shù)。

我是這樣子實(shí)現(xiàn)了需求:

A頁面:

<el-button size="mini"
                   type="success"
                   @click="add"
                   icon="el-icon-plus"
                   round
                   plain>{{$t('common.add')}}</el-button>
        <el-button type="primary"
                   size="mini"
                   @click="edit"
                   icon="el-icon-edit"
                   plain
                   round>{{ $t('common.edit') }}</el-button>

點(diǎn)擊事件:

add() {
      this.lockTaskStatus = 'new'
      this.toLockTaskManagePage()},edit() {
      this.lockTaskStatus = 'edit'
      this.toLockTaskManagePage()},toLockTaskManagePage() {
      this.$router.push({
        path: '/taskLockManage',
        name: 'TaskLockManage',
        params: {
          status: this.lockTaskStatus        }
      })}

將將跳轉(zhuǎn)的url添加到 $router中。

path 中的url 最前面加 / 代表是根目錄下,不加則表示是子路由。

通過path + params的組合傳遞參數(shù)。

B頁面:

created() {
    this.getParams()
  },
  watch: {
    // 監(jiān)測路由變化,只要變化了就調(diào)用獲取路由參數(shù)方法將數(shù)據(jù)存儲本組件即可
    $route: 'getParams'
  },
  methods: {
    getParams() {
      // 取到路由帶過來的參數(shù)
      const res = this.$route.params.status
      console.log('getParams', res)
    }}

最后,還需在router/index.js中注冊:

{
    path: '/taskLockManage',
    component: Layout,
    redirect: '/taskManage/index',
    hidden: true,
    children: [
      {
        path: 'taskLockManage',
        component: () => import('@/views/taskManage/taskLockManage'),
        name: 'TaskLockManage',
        meta: { title: 'taskLockManage', icon: 'user', noCache: true }
      }
    ]}

這樣,便可實(shí)現(xiàn)了跳轉(zhuǎn)。(PS:這是目前發(fā)現(xiàn)的比較好的方法,希望哪位大佬有更好的方法指導(dǎo)。)

“vue怎樣實(shí)現(xiàn)從A頁面跳轉(zhuǎn)到B頁面”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向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