怎样实现鼠标一直点击一直加,不调api,但依然可以加,只是没有往后台存。然后不点击时1-2秒后再往后台存。有没有更好的建议与方法。
2 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
classDemoextendsComponent{constructor(){this.state={count:0,}this.timer=null}countClick=()=>{clearTimeOut(this.timer)letcount=this.state.countthis.setState({count:count+1})this.timer=setTimeOut(this.fetch,2000)}fetch=()=>{//请求后台}render(){return点击+{this.state.count}
}}