优化项目
love 2021-02-01
# 优化项目
杂记,不定期更新
- vue项目清除计时器更优写法
mounted () {
const timer = setInterval(() =>{
this.tableData = [];
this.getjcjyList();
}, 60000); // 通过$once来监听定时器,在beforeDestroy钩子可以被清除。
this.$once('hook:beforeDestroy', () => { clearInterval(timer); })
}
1
2
3
4
5
6
7
2
3
4
5
6
7
(Web 帧动画解决方案 - APNG原理与实现)[https://juejin.cn/post/6914846392808636429]