gpt4 book ai didi

vue.js - 如何正确删除 vue 3 中的事件监听器

转载 作者:行者123 更新时间:2023-12-05 00:44:23 26 4
gpt4 key购买 nike

我有一个事件监听器,它在项目安装时和每次调整大小事件后获取视口(viewport)尺寸。

我不知道如何正确移除事件监听器。

const { createApp, onMounted, ref } = Vue;
const app = createApp({
setup() {
const dim = ref({})

onMounted(() => {
dim.value = getDimensions()
// adding the event listener...
window.addEventListener('resize', debounce(() => {
// ...but how to remove the event listener correctly?
console.log('resize')
dim.value = getDimensions()
}, 250))
})

function getDimensions () {
return {
w: window.innerWidth,
h: window.innerHeight
}
}

// generic debounce function
function debounce (func, wait) {
let timeout
return function executedFunction (...args) {
const later = () => {
timeout = null
func(...args)
}
clearTimeout(timeout)
timeout = setTimeout(later, wait)
}
}

return {
dim
}
}
});
app.mount("#app");
.navbar {
position: fixed;
width: 100%;
height: 50px;
top: 0;
left: 0;
background-color: #555;
text-align: center;
}
p {
color: #fff;
}
<script src="https://unpkg.com/vue@next"></script>

<div id="app">
<div class="navbar">
<p>
<span>width: {{ dim.w + ' ' }}</span>
<span>| height: {{ dim.h }}</span>
</p>
</div>
</div>

如何移除事件监听器?

我正在使用 Vue 3 和组合 API。

最佳答案

为什么不在 unmounted 生命周期 Hook (docs) 中

window.removeEventListener("resize", debounce);

对于 Vue 3 组合 API,相应的钩子(Hook)是 onUnmounted(参见 docs)

关于vue.js - 如何正确删除 vue 3 中的事件监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67005945/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com