您好,登錄后才能下訂單哦!
我在做項(xiàng)目的時(shí)候,有一個(gè)需求,在離開(跳轉(zhuǎn)或者關(guān)閉)購物車頁面或者刷新購物車頁面的時(shí)候向服務(wù)器提交一次購物車商品數(shù)量的變化。
將提交的一步操作放到 beforeDestroy 鉤子函數(shù)中。
beforeDestroy() { console.log('銷毀組件') this.finalCart()},
但是發(fā)現(xiàn) beforeDestroy 只能監(jiān)聽到頁面間的跳轉(zhuǎn),無法監(jiān)聽到頁面刷新和關(guān)閉標(biāo)簽頁。
所以還是要借助 onbeforeunload 事件。
順便復(fù)習(xí)了一下 JavaScript 中的一些加載,卸載事件:
Vue中監(jiān)聽頁面刷新和關(guān)閉
1. 在methods中定義事件方法:
methods: { beforeunloadFn(e) { console.log('刷新或關(guān)閉') // ... } }
2. 在created 或者 mounted 生命周期鉤子中綁定事件
created() { window.addEventListener('beforeunload', e => this.beforeunloadFn(e)) }
3. 在 destroyed 鉤子卸載事件
destroyed() { window.removeEventListener('beforeunload', e => this.beforeunloadFn(e)) }
測(cè)試了頁面刷洗和關(guān)閉都能監(jiān)聽到。
回到我自己的項(xiàng)目,可以使用 onbeforeunload 事件和 beforeDestroy 鉤子函數(shù)結(jié)合:
created() { this.initCart() window.addEventListener('beforeunload', this.updateHandler) }, beforeDestroy() { this.finalCart() // 提交購物車的異步操作}, destroyed() { window.removeEventListener('beforeunload', this.updateHandler)}, methods: { updateHandler() { this.finalCart() }, finalCart() { // ... } }
總結(jié)
以上所述是小編給大家介紹的Vue監(jiān)聽頁面刷新和關(guān)閉功能,希望對(duì)大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!
免責(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)容。