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)
}
时间: 2024-10-06 19:45:17