想完成上啦刷新的操作,就通过原生的onscroll事件来监听,在网页上和chorme的模拟器下都能够监听到,但是一到线上用手机就兼听不到了,不管是用微信还是UC浏览器都不能监听下面是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});
1 回答
DIEA
TA贡献1820条经验 获得超2个赞
const scroll = window.addEventListener('scroll', this.handleScroll,false);
试下这样写
添加回答
举报
0/150
提交
取消