首先看看Vue文檔里關(guān)于實(shí)例生命周期的解釋圖
創(chuàng)新互聯(lián)建站專業(yè)成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì),集網(wǎng)站策劃、網(wǎng)站設(shè)計(jì)、網(wǎng)站制作于一體,網(wǎng)站seo、網(wǎng)站優(yōu)化、網(wǎng)站營(yíng)銷、軟文發(fā)稿等專業(yè)人才根據(jù)搜索規(guī)律編程設(shè)計(jì),讓網(wǎng)站在運(yùn)行后,在搜索中有好的表現(xiàn),專業(yè)設(shè)計(jì)制作為您帶來效益的網(wǎng)站!讓網(wǎng)站建設(shè)為您創(chuàng)造效益。
那么下面我們來進(jìn)行測(cè)試一下
<section id="app-8"> {{data}} </section>
var myVue=new Vue({ el:"#app-8", data:{ data:"aaaaa", info:"nono" }, beforeCreate:function(){ console.log("創(chuàng)建前========") console.log(this.data) console.log(this.$el) }, created:function(){ console.log("已創(chuàng)建========") console.log(this.info) console.log(this.$el) }, beforeMount:function(){ console.log("mount之前========") console.log(this.info) console.log(this.$el) }, mounted:function(){ console.log("mounted========") console.log(this.info) console.log(this.$el) }, beforeUpdate:function(){ console.log("更新前========"); }, updated:function(){ console.log("更新完成========"); }, beforeDestroy:function(){ console.log("銷毀前========") console.log(this.info) console.log(this.$el) }, destroyed:function(){ console.log("已銷毀========") console.log(this.info) console.log(this.$el) } })
代碼如上,瀏覽器開始加載文件
由上圖可知:
1、beforeCreate 此時(shí)$el、data 的值都為undefined
2、創(chuàng)建之后,此時(shí)可以拿到data的值,但是$el依舊為undefined
3、mount之前,$el的值為“虛擬”的元素節(jié)點(diǎn)
4、mount之后,mounted之前,“虛擬”的dom節(jié)點(diǎn)被真實(shí)的dom節(jié)點(diǎn)替換,并將其插入到dom樹中,于是在觸發(fā)mounted時(shí),可以獲取到$el為真實(shí)的dom元素()
myVue.$el===document.getElementById("app-8") // true
接著,在console中修改data,更新視圖
觸發(fā)beforeUpdata 和updated
接著,執(zhí)行myVue.$destroy()
總結(jié)一下,對(duì)官方文檔的那張圖簡(jiǎn)化一下,就得到了這張圖
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
當(dāng)前名稱:Vue生命周期示例詳解
網(wǎng)站URL:http://aaarwkj.com/article14/isjsde.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、網(wǎng)站排名、動(dòng)態(tài)網(wǎng)站、標(biāo)簽優(yōu)化、靜態(tài)網(wǎng)站、響應(yīng)式網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)