onscroll事件在移动端监听不到

想完成上啦刷新的操作,就通过原生的onscroll事件来监听,在网页上和chorme的模拟器下都能够监听到,但是一到线上用手机就兼听不到了,不管是用微信还是UC浏览器都不能监听
https://img3.mukewang.com/5c2c405f000180b803850023.jpg

下面是componentDidMount的代码,请问移动端监听onscroll有什么需要注意的问题

componentDidMount() {

console.log('homeMount');

const scroll = window.addEventListener('scroll', this.handleScroll);

const { page, limit, mdrender } = this.props.state;

this.props.actions.fetchList('/api/v1/topics', {

    tab: queryString.parse(this.props.location.search).tab || 'all',

    limit,

    page,

    mdrender

});


沧海一幻觉
浏览 426回答 1
1回答

DIEA

const scroll = window.addEventListener('scroll', this.handleScroll,false);试下这样写
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript