标签:his function time func cti event eve clear listen
componentDidMount(){
let timeoutId
function callback(){
}
window.addEventListener(‘scroll‘,function(){
if(this.props.isLoadingMore){
return
}
if(timeoutId){
clearTimeout(timeoutId)
}
timeoutId = setTimeout(callback,50)
}.bind(this),false)
}
标签:his function time func cti event eve clear listen
原文地址:http://www.cnblogs.com/zhangxintong1314/p/6843895.html