小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序退出后进入微信后台,再重新进入小程序,touhend无效但是touchstat有效,有点懵
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<!--index.wxml-->
<view class="container" bindtouchstart="touchstart" bindtouchend="touchend">{{text}}</view>
//index.js
Page({
data: {
text:'XXX'
},
onLoad: function () {
touchstart: function (e) {
console.log('touchstart')
this.setData({
text:'touchstart'
})
touchend: function (e) {
console.log('touchend')
text: 'touchend'
}
测试了没有你说的那个问题啊?是不是touchstat事件卡住了!
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
我也不清楚,就是我先使用toustart,touchend滑动到另一个页面,然后退出小程序,再重新进入,touchend无反应,真机测试,模拟器没办法退出小程序
使用toustart,touchend滑动到另一个页面?这是什么操作,滑动不应该是touchmove吗?或者说你只是点击一下就跳转到另一个页面bindtap
不是,就是我写了两个view,第一个view从左往右滑动第二个view显示,第一个view隐藏,第二个view从右往左滑动第一个view显示,第二个view隐藏,当第二个view显示后退出小程序,小程序短时间会不会销毁,会在小程序后台继续运行,这时候再进小程序第二个view是显示的,这时候从右往左滑动应该回到第一个view,但是这时候touchend无反应,但是touchstart有反应
touchmove 也挂了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<!--index.wxml-->
<view class="container" bindtouchstart="touchstart" bindtouchend="touchend">{{text}}</view>
//index.js
Page({
data: {
text:'XXX'
},
onLoad: function () {
},
touchstart: function (e) {
console.log('touchstart')
this.setData({
text:'touchstart'
})
},
touchend: function (e) {
console.log('touchend')
this.setData({
text: 'touchend'
})
}
})
测试了没有你说的那个问题啊?是不是touchstat事件卡住了!
我也不清楚,就是我先使用toustart,touchend滑动到另一个页面,然后退出小程序,再重新进入,touchend无反应,真机测试,模拟器没办法退出小程序
使用toustart,touchend滑动到另一个页面?这是什么操作,滑动不应该是touchmove吗?或者说你只是点击一下就跳转到另一个页面bindtap
不是,就是我写了两个view,第一个view从左往右滑动第二个view显示,第一个view隐藏,第二个view从右往左滑动第一个view显示,第二个view隐藏,当第二个view显示后退出小程序,小程序短时间会不会销毁,会在小程序后台继续运行,这时候再进小程序第二个view是显示的,这时候从右往左滑动应该回到第一个view,但是这时候touchend无反应,但是touchstart有反应
touchmove 也挂了