溫馨提示×

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

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

Vue中屬性、方法、生命周期的示例分析

發(fā)布時(shí)間:2021-07-20 14:23:44 來源:億速云 閱讀:136 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了Vue中屬性、方法、生命周期的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

實(shí)例

<!DOCTYPE html>
  <html lang="en">
   <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Vue的屬性、方法和生命周期</title>
    <script src="Vue.min.js"></script>
   </head>
  
   <body>
    <div id="main">
     <span>{{ message }}</span>
     <br/>
     <span>{{ number }}</span>
     <br/>
     <button v-on:click="add">add</button>
    </div>
   </body>
  </html>
  
  <script>
   const App = new Vue({
    // 選擇器
    el: '#main',
    // 數(shù)據(jù)
    data: {
     // 在data里面不僅可以定義字符串,我們還可以定義number
     message: 'Welcome to Chivalrous Island!',
     number: 85,
    },
    // 如果我們從服務(wù)器得到的數(shù)據(jù)并不是我們需要的,可能是上面數(shù)據(jù)的結(jié)合,這時(shí)我們可以用到一個(gè)Vue提供的一個(gè)屬性:計(jì)算屬性
    // 計(jì)算屬性:可以把data里面的數(shù)據(jù)計(jì)算一下,然后返回一個(gè)新的數(shù)據(jù),它被叫做computed。
    computed: {
     // 可以定義函數(shù),然后返回需要的數(shù)據(jù),比如下面我們要得到上面number的平方,計(jì)算結(jié)果為:
     getSqure: function () {
       return this.number * this.number;
     }
    },
    // 定義函數(shù)
    methods: {
     add: function() {
      this.number++;
     }
    },
    // 監(jiān)聽屬性(監(jiān)聽器),它可以監(jiān)聽一個(gè)函數(shù)或者是一個(gè)變量
    watch: {
     // 函數(shù)接收兩個(gè)參數(shù)值,afterVal代表改變之后的值,beforeVal表示改變之前的值
     number: function(afterVal,beforeVal) {
      console.log('beforeVal',beforeVal);
      console.log('afterVal',afterVal);
     }
    }
   });
  
   // 打印出來的結(jié)果
   console.log(App.getSqure);
  </script>

屬性

從上面的案例可以知道,屬性可以分為計(jì)算屬性(computed)和監(jiān)聽屬性(watch)。

計(jì)算屬性有一個(gè)好處在于它有一個(gè)緩存機(jī)制,因此它不需要每次都重新計(jì)算。

監(jiān)聽屬性(監(jiān)聽器),它可以監(jiān)聽一個(gè)函數(shù)或者是一個(gè)變量。

Vue中屬性、方法、生命周期的示例分析 

方法(methods)

methods常調(diào)用的函數(shù)。

上面的示例中,getSqure,add,number,像這些都是我們自定義的方法。

生命周期(鉤子函數(shù))

生命周期就是從它開始創(chuàng)建到銷毀經(jīng)歷的過程。

這個(gè)生命周期也就是Vue的實(shí)例,從開始創(chuàng)建,到創(chuàng)建完成,到掛載,再到更新,然后再銷毀的一系列過程,這個(gè)官方有一個(gè)說法也叫作鉤子函數(shù)。

<script>
  window.onload = () => {
    const App = new Vue({
      ......
    
      // 生命周期第一步:創(chuàng)建前(vue實(shí)例還未創(chuàng)建)
       beforeCreate() {
         // %c 相當(dāng)于給輸出結(jié)果定義一個(gè)樣式
        console.log('%cbeforeCreate','color:green', this.$el);
        console.log('%cbeforeCreate','color:green', this.message);
       },
      // 創(chuàng)建完成
      created() {
         console.log('%ccreated','color:red', this.$el);
         console.log('%ccreated','color:red', this.message);
      },  
      // 掛載之前
      beforeMount() {
        console.log('%cbeforeMount','color:blue', this.$el);
        console.log('%cbeforeMount','color:blue', this.message);
      },
      // 已經(jīng)掛載但是methods里面的方法還沒有執(zhí)行,從創(chuàng)建到掛載全部完成
      mounted() {
        console.log('%cmounted','color:orange', this.$el);
        console.log('%cmounted','color:orange', this.message);
      },
       // 創(chuàng)建完之后,數(shù)據(jù)更新前
      beforeUpdate() {
        console.log('%cbeforeUpdate','color:#f44586', this.$el);
        console.log('%cbeforeUpdate','color:#f44586', this.number);
      },
      // 數(shù)據(jù)全部更新完成
      updated() {
        console.log('%cupdated','color:olive', this.$el);
        console.log('%cupdated','color:olive', this.number);
      },
      // 銷毀
      beforeDestroy() {
        console.log('%cbeforeDestroy','color:gray', this.$el);
        console.log('%cbeforeDestroy','color:gray', this.number);
      },
      destroyed() {
        console.log('%cdestroyed','color:yellow', this.$el);
        console.log('%cdestroyed','color:yellow', this.number);
      }
    });
  // 打印出來的結(jié)果
    console.log(App.getSqure);
    window.App = App;
  };
  
  // 銷毀vue實(shí)例
  function destroy() {
    App.$destroy();
  }
  </script>

html:

<body>
    <div id="main">
     <span>{{ message }}</span>
     <br/>
     <span>{{ number }}</span>
     <br/>
     <button v-on:click="add">add</button>
      <br />
     <button Onclick="destroy()">destroy</button>
    </div>
  </body>

Vue中屬性、方法、生命周期的示例分析

Vue中屬性、方法、生命周期的示例分析

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Vue中屬性、方法、生命周期的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

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

vue
AI