bug如下:
unReadMsgList请求10秒一次,getBmUpdateSettingsListByUserId5秒一次,本应该两个unReadMsgList之间出现两次getBmUpdateSettingsListByUserId,但是实际出现了6个getBmUpdateSettingsListByUserId(如图),
是由于进入页面,调用了一次getBmUpdateSettingsListByUserId请求,没清理定时器,
运行操作的时候,调用了一次getBmUpdateSettingsListByUserId请求,没清理定时器,
删除操作的时候,调用了一次getBmUpdateSettingsListByUserId请求,没清理定时器,就出现了三倍的数量

image.png

componentDidMount() {
  this.requestList(); // 请求模型更新表格数据
}
// 查询列表
requestList = () => {
  _getBmUpdateSettingsListByUserId({
   // 获取列表请求
  }).finally(()=>{ this.timer = setTimeout(()=>{
      this.requestList()
    },5000)})
}
 
// 删除请求成功后,请求一次列表
DeleteAlert({
  // 删除请求
}).then(
   this.requestList()
)

// 运行(添加)请求成功后,请求一次列表
_addBmUpdateSettings({
   // 运行(添加)请求
}).then(
  this.requestList()
)

// 离开页面的钩子,清理定时器
componentWillUnmount () {
  clearTimeout(this.timer);
}

解决方案如下: this.requestList()函数中加入清理定时器,其余不变

requestList = () => {
  clearTimeout(this.timer); // 清理之前的定时器队列
  _getBmUpdateSettingsListByUserId({
   // 获取列表请求
  }).finally(()=>{ this.timer = setTimeout(()=>{
     this.requestList()
  },5000)})
}

image.png


云端的日子
66 声望1 粉丝

引用和评论

0 条评论