页面或者函数完成后的善后工作
fe:

  1. setTimeout() clearTimeout()
  2. setInterval() clearInterval()
  3. uni.showLoading() uni.hideLoading()
  4. this. o n ( ′ f u n c ′ ) t h i s . on('func') this. on(func)this.off(‘func’)
//settimeout
				var id = setTimeout(() => {
					uni.showToast({
						title: "success"
					})
				}, 1000);
				clearTimeout(id) //如果异步操作没有触发,需要销毁id,提前销毁不会执行
			 
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐