楚歌
西出阳关客,临风听暮蝉
const setTimer = (id) => {
  let timer = null
  axios.post(id).then(res => {
    if (res) { // 根据状态判断
      clearTimeout(timer)//清理定时器
    } else {
      timer = setTimeout(() => {
        setTimer(id)
      }, 2000)
    }
  })
}

  

posted on 2022-09-09 14:27  慵懒的楚歌  阅读(337)  评论(0)    收藏  举报