问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug bindtouchmove 工具 6.7.3 2.3.0
- 当前 Bug 的表现(可附上截图)
在安卓端绑微信小程序定一个view 的touchmove 事件时,纵向触摸滑动每秒只有5次事件回调
但是用网页端复现的时候表现正常
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
微信小程序代码:
- index.wxml
{{touchMovesPerSecond}}
- index.js
const app = getApp()
Page({
data: {
touchMovesPerSecond: 0
},
touchMovesArray: [],
layerMove: function(event) {
this.touchMovesArray.push(new Date())
const now = new Date()
this.touchMovesArray = this.touchMovesArray.filter(time => time > now - 1000)
this.setData({
touchMovesPerSecond: this.touchMovesArray.length
})
}
})
--------------------------------------------分界线------------------------------------------
Web 端代码:
微信小程序开发问题解答
微信小程序开发者回答:
同问,我是下拉,安卓机卡的要死
本文网址:http://www.91bianli.com/kaifazhinan/74875.html