收藏
回答

微信公众平台-->开发-->运维中心出现大量脚本错误,我应该如何处理?


以最多的那个错误(157个)为例,在指定页面的位置上,我已经做了处理,但是为什么还是一直跳?代码如下:


/**

  * 页面滚动事件

  */

onPageScroll: function(e) {

let that = this;

const query = wx.createSelectorQuery();

query.select('#pad').boundingClientRect();

query.exec(function(res) {

if (!Array.isArray(res) || typeof (res[0]) != 'object' || typeof(res[0].top) != 'number') {

return false;

}

that.setData({

scroll: res[0].top <= 0 ? true : false,

autoPlay: (res[0].top <= 0 ? false : true)

});


})

},


最后一次编辑于  2019-08-12
回答关注问题邀请回答
收藏

1 个回答

  • 热火
    热火
    2019-08-13

    没人遇到过这些问题吗?

    2019-08-13
    有用
    回复
登录 后发表内容
问题标签