想完成上啦刷新的操作,就通過原生的onscroll事件來監(jiān)聽,在網(wǎng)頁上和chorme的模擬器下都能夠監(jiān)聽到,但是一到線上用手機(jī)就兼聽不到了,不管是用微信還是UC瀏覽器都不能監(jiān)聽下面是componentDidMount的代碼,請問移動端監(jiān)聽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});
onscroll事件在移動端監(jiān)聽不到
滄海一幻覺
2018-12-12 14:15:30