成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

Vue3實(shí)現(xiàn)刷新頁(yè)面局部?jī)?nèi)容的示例代碼

3403771864 / 940人閱讀

  可以用實(shí)現(xiàn)局部組件(dom)的重新渲染可以實(shí)現(xiàn)頁(yè)面的局部刷新。有一個(gè)最簡(jiǎn)單辦法,我們可以用Vue中的v-if指令來(lái)實(shí)現(xiàn)。

  我們的思路是:除了上述用Vue中的v-if指令來(lái)實(shí)現(xiàn),我們也可以用另一個(gè)方法就是新建一個(gè)空白組件,需要刷新局部頁(yè)面時(shí)跳轉(zhuǎn)至這個(gè)空白組件頁(yè)面,然后在空白組件內(nèi)的beforeRouteEnter守衛(wèi)中又跳轉(zhuǎn)回原來(lái)的頁(yè)面。

  如下圖所示,在Vue3.X中不僅可以實(shí)現(xiàn)點(diǎn)擊刷新,按鈕實(shí)現(xiàn)紅框范圍內(nèi)的dom重新加載,也可以展現(xiàn)出正在加載頁(yè)面。

1.png

2.png

  由于Vue3.X中script setup語(yǔ)法中組件內(nèi)守衛(wèi)只有onBeforeRouteUpdate及onBeforeRouteUpdate兩個(gè)API,因此我們來(lái)借助v-if指令使局部dom重新渲染來(lái)實(shí)現(xiàn)這一需求。

  第一步:定義狀態(tài)標(biāo)識(shí)

  在全局狀態(tài)中定義一個(gè)isRouterAlive標(biāo)識(shí)刷新?tīng)顟B(tài),根據(jù)isRouterAlive變化來(lái)重新渲染。isLoading標(biāo)識(shí)加載狀態(tài)。

  import { defineStore } from 'pinia'
  export const useAppStore = defineStore({
  id: 'app',
  state: () =>
  ({
  isRouterAlive: true,
  isLoading: false
  } as { isRouterAlive: boolean; isLoading: boolean })
  })

  第二步、借用v-if 指令讓dom節(jié)點(diǎn)重新渲染

  <template>
  <div>
  <el-container>
  <SideMenuView :collapse="isCollapse"></SideMenuView>
  <el-container>
  <NavMenuView v-model:collapse="isCollapse"></NavMenuView>
  <TabsView></TabsView>
  <!--核心 start-->
  <el-main
  v-loading="appStore.isLoading"
  element-loading-text="頁(yè)面加載中……"
  element-loading-background="rgba(0, 0, 0, 0.8)"
  >
  <router-view v-if="appStore.isRouterAlive"> </router-view>
  </el-main>
  <!--核心 end-->
  <el-footer>Footer</el-footer>
  </el-container>
  </el-container>
  </div>
  </template>
  <script setup>
  import SideMenuView from './SideMenuView.vue'
  import NavMenuView from './NavMenuView.vue'
  import TabsView from './TabsView.vue'
  import { useAppStore } from '@/stores/app'
  const appStore = useAppStore()
  const isCollapse = ref(false)
  </script>
  <style scoped>
  …… CSS樣式
  </style>

  第三步、修改isRouterAlive 值,實(shí)現(xiàn)dom的重新渲染

  <template>
  <div
  class="tabs-item cursor-pointer arrow-down"
  ref="buttonRef"
  @click="onClickOutside"
  >
  <el-icon><ArrowDownBold /></el-icon>
  </div>
  <el-popover
  ref="popoverRef"
  trigger="hover"
  virtual-triggering
  :virtual-ref="buttonRef"
  >
  <div @click="handleCommand('refresh')">刷新</div>
  <div @click="handleCommand('closeOther')">
  關(guān)閉其他
  </div>
  <div @click="handleCommand('closeLeft')">
  關(guān)閉左側(cè)
  </div>
  <div @click="handleCommand('closeRight')">
  關(guān)閉右側(cè)
  </div>
  </el-popover>
  </template>
  <script setup>
  import { CloseBold, ArrowDownBold } from '@element-plus/icons-vue'
  import type { MenuItem } from '@/interface/menu'
  import { useMenuRouterStore } from '@/stores/menu-router'
  import { useTabsStore } from '@/stores/tabs'
  import { useAppStore } from '@/stores/app'
  const router = useRouter()
  const menuRouterStore = useMenuRouterStore()
  const tabsStore = useTabsStore()
  const appStore = useAppStore()
  // tabs功能操作
  const buttonRef = ref()
  const popoverRef = ref()
  const onClickOutside = () => {
  unref(popoverRef).popperRef?.delayHide?.()
  }
  const handleCommand = (command: string) => {
  if (command === 'refresh') {
  appStore.isLoading = true // 展示數(shù)據(jù)加載狀態(tài)
  appStore.isRouterAlive = false // 設(shè)置為false,卸載dom
  setTimeout(() => { // 此處采用了定時(shí)器,并沒(méi)有采用網(wǎng)上比較常見(jiàn)的nextTick
  appStore.isRouterAlive = true // 設(shè)置為true,重新掛載dom
  appStore.isLoading = false // 隱藏?cái)?shù)據(jù)加載狀態(tài)
  }, 500)
  } else if (command === 'closeOther') {
  tabsStore.closeOther()
  } else {
  tabsStore.closeLeftOrRight(command)
  }
  }
  // ……
  </script>
  <style scoped>
  …… CSS樣式
  </style>

      上述全部?jī)?nèi)容,大家多多關(guān)注。

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/127782.html

相關(guān)文章

  • 關(guān)于Vue2一些值得推薦文章 -- 五、六月份

    摘要:五六月份推薦集合查看最新的請(qǐng)點(diǎn)擊集前端最近很火的框架資源定時(shí)更新,歡迎一下。蘇幕遮燎沈香宋周邦彥燎沈香,消溽暑。鳥(niǎo)雀呼晴,侵曉窺檐語(yǔ)。葉上初陽(yáng)乾宿雨,水面清圓,一一風(fēng)荷舉。家住吳門(mén),久作長(zhǎng)安旅。五月漁郎相憶否。小楫輕舟,夢(mèng)入芙蓉浦。 五、六月份推薦集合 查看github最新的Vue weekly;請(qǐng)::點(diǎn)擊::集web前端最近很火的vue2框架資源;定時(shí)更新,歡迎 Star 一下。 蘇...

    sutaking 評(píng)論0 收藏0
  • 關(guān)于Vue2一些值得推薦文章 -- 五、六月份

    摘要:五六月份推薦集合查看最新的請(qǐng)點(diǎn)擊集前端最近很火的框架資源定時(shí)更新,歡迎一下。蘇幕遮燎沈香宋周邦彥燎沈香,消溽暑。鳥(niǎo)雀呼晴,侵曉窺檐語(yǔ)。葉上初陽(yáng)乾宿雨,水面清圓,一一風(fēng)荷舉。家住吳門(mén),久作長(zhǎng)安旅。五月漁郎相憶否。小楫輕舟,夢(mèng)入芙蓉浦。 五、六月份推薦集合 查看github最新的Vue weekly;請(qǐng)::點(diǎn)擊::集web前端最近很火的vue2框架資源;定時(shí)更新,歡迎 Star 一下。 蘇...

    khs1994 評(píng)論0 收藏0
  • 剖析Vue3中偵聽(tīng)器watch使用教程

      上一節(jié)我們簡(jiǎn)單的介紹了一下vue3 項(xiàng)目中的計(jì)算屬性,這一節(jié)我們繼續(xù) vue3 的基礎(chǔ)知識(shí)講解?! ∵@一節(jié)我們來(lái)說(shuō) vue3 的偵聽(tīng)器。  學(xué)過(guò) vue2 的小伙伴們肯定學(xué)習(xí)過(guò)偵聽(tīng)器,主要是用來(lái)監(jiān)聽(tīng)頁(yè)面數(shù)據(jù)或者是路由的變化,來(lái)執(zhí)行相應(yīng)的操作,在 vue3里面呢,也有偵聽(tīng)器的用法,功能基本一樣,換湯不換藥的東西。 偵聽(tīng)器是常用的 Vue API 之一,它用于監(jiān)聽(tīng)一個(gè)數(shù)據(jù)并在數(shù)據(jù)變動(dòng)時(shí)做一些自定義...

    3403771864 評(píng)論0 收藏0
  • vue3集成Element-plus實(shí)現(xiàn)按需自動(dòng)引入組件方法匯總

      本篇文章就是介紹關(guān)于vue3集成Element-plus實(shí)現(xiàn)按需自動(dòng)引入組件的相關(guān)資料,為了讓大家詳細(xì)了解,附有詳細(xì)內(nèi)容?! lement-plus正是element-ui針對(duì)于vue3開(kāi)發(fā)的一個(gè)UI組件庫(kù),  它的使用方式和很多其他的組件庫(kù)是一樣的,其他類似于ant-design-vue、NaiveUI、VantUI都是差不多的;安裝element-plus  首先下載element-pl...

    3403771864 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<