赞
踩
Vue 组件销毁时,会自动解绑它的全部指令及事件监听器,但是仅限于组件本身的事件
而对于定时器
、addEventListener
注册的监听器等,就需要在组件销毁的生命周期钩子中手动销毁或解绑,以避免内存泄露
- <script>
- export default {
- created() {
- this.timer = setInterval(this.refresh, 2000)
- addEventListener('touchmove',
- this.touchmove, false)
- },
- beforeDestroy() {
- clearInterval(this.timer)
- this.timer = null
- removeEventListener('touchmove',
- this.touchmove, false)
- }
- }
- </script>
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。