Vue3中進行頁面局部刷新組件刷新的操作方法

前言

今天在給vue3的項目中進行數據綁定的時候,發現我刪除一條記錄頁面不會自動刷新,還是保留原來的狀態

但是數據已經傳送給後端,後端也完成瞭響應的處理

這個時候我想到瞭局部刷新,我想vue3是vue2的升級版,那麼部分語法應該是支持的才對,經過嘗試不是很完美

沒有達到自己想要的情況,期間還很多報錯

開始操作

vue3的生命周期和vue2的生命周期是完全不一樣的

vue2和vue3的區別

我這裡就簡單介紹一下2者的區別

Vue2與Vue3 最大的區別:Vue2使用選項類型API(Options API)對比Vue3合成型API(Composition API)

舊的選項型API在代碼裡分割瞭不同的屬性: data,computed屬性,methods,等等。新的合成型API能讓我們用方法(function)來分割,相比於舊的API使用屬性來分組,這樣代碼會更加簡便和整潔

vue2

export default {
    props: {
        title: String,
    },
    data() {
        return {
            username: "",
            password: "",
        };
    },
    methods: {
        login() {
            //登錄axios請求處理
        },
    },
    components: {
        buttonComponent: btnComponent,
    },
    computed: {
        fullName() {
            return this.firstName + " " + this.lastName;
        },
    },
};

vue3

export default {
    props: {
        title: String,
    },
    setup() {
        const state = reactive({
            //數據
            username: "",
            password: "",
            lowerCaseUsername: computed(() => state.username.toLowerCase()), //計算屬性
        });
        //方法
        const login = () => {
            //登錄axios請求處理
        };
        return {
            login,
            state,
        };
    },
};

Vue2和Vue3的鉤子函數生命周期對照

Vue2--------------vue3
beforeCreate  -> setup()
created       -> setup()
beforeMount   -> onBeforeMount
mounted       -> onMounted
beforeUpdate  -> onBeforeUpdate
updated       -> onUpdated
beforeDestroy -> onBeforeUnmount
destroyed     -> onUnmounted
activated     -> onActivated
deactivated   -> onDeactivated

setup() :開始創建組件之前,在beforeCreate和created之前執行。創建的是data和method
onBeforeMount() : 組件掛載到節點上之前執行的函數。
onMounted() : 組件掛載完成後執行的函數。
onBeforeUpdate(): 組件更新之前執行的函數。
onUpdated(): 組件更新完成之後執行的函數。
onBeforeUnmount(): 組件卸載之前執行的函數。
onUnmounted(): 組件卸載完成後執行的函數
若組件被包含,則多出下面兩個鉤子函數。
onActivated(): 被包含在中的組件,會多出兩個生命周期鉤子函數。被激活時執行 。
onDeactivated(): 比如從 A組件,切換到 B 組件,A 組件消失時執行。

步入正題,解決今天的問題

我們瞭解過瞭二者的區別,那我們開始解決問題,百度搜素出來的解決方案大部分都是vue2的今天咱們用vue3的方法來實現局部組件刷新

代碼

首先我們要對app.vue進行修改

代碼:

<template>
  <div id="app">
    <nav-View v-show="login" />
    <router-view v-if="isRouterAlive" /> <!-- 進行v-if判斷 -->
    <foot-View v-show="login" />
  </div>
</template>

<script>
import navView from "@/components/navView.vue";
import footView from "@/components/footer.vue";
import { onMounted, ref, watch ,nextTick,provide,} from "vue";//要引入方法
import { useRouter } from "vue-router";

export default {
  name: "app",
  components: {
    navView,
    footView,
  },
  created() {
    console.log("123", this.$route.path);
  },
  setup() {
    // 局部組件刷新
    const isRouterAlive = ref(true);
    const reload = () => {
      isRouterAlive.value = false;
      nextTick(() => {
        isRouterAlive.value = true;
      });
    };
    provide("reload", reload);
    return {
      isRouterAlive,
    };
  },
  watch: {
    
  },
};
</script>

<style>
* {
  margin: 0px;
}
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}
</style>

接下來就是子組件(分頁的調用)

代碼:

<template>
  <div>
    <!-- input框輸入值,點擊按鈕,看值會不會清空 -->
    <input type="text"> 
  </div>
  <button @click="refresh">頁面刷新</button>
</template>
<script>
import { inject } from "vue";
export default{
  setup() {
    const refresh = inject("reload");
	//在方法體中的調用方法
    // refresh();
    return {
      refresh,
    };
  },
};
</script>

完成瞭我們想要的頁面局部刷新,到此問題解決

到此這篇關於Vue3中進行頁面局部刷新組件刷新的操作方法的文章就介紹到這瞭,更多相關Vue3頁面局部刷新內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: