小程序
小游戏
企业微信
微信支付
扫描小程序码分享
https://www.douyin.com/discover?modal_id=7086659212339727620(暂时无法上传腾讯视频)
前部分为开发工具预览效果,卡顿基本不存在;但是真机和预览操作时,手机出现严重卡顿无法正常使用功能,望论坛里大佬能给予优化代码意见
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
补充个代码片段: https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
起码弄个代码片段
setCountDown: function () { var thisPage = this var Pause = thisPage.data.isPause if (Pause == false) { //刷新时间以及递减时间范围 let time = 1000; let wPause = thisPage.data.wasPause let test = thisPage.data.pingData[0].time var Text = thisPage.data.showText let { listData } = thisPage.data; // map里 v为当前数组操作的元素,i为当前元素在数组的坐标 //对数组进行拆包 let list = listData.map((v, i) => { if (v.time < 0) { v.time = 0; } //对元素进行日期输出格式化 let formatTime = thisPage.getFormat(v.time); v.time -= time; v.countDown = `${formatTime.mm}:${formatTime.ss}`; //进行是否曾经暂停 console.log("经过暂停前" +this.data.wasPause) if (wPause == true) { v.time = v.time + 1000; //可以赋值 thisPage.setData({ wasPause: false }) console.log("first time to regoing!") console.log("经过暂停后" + this.data.wasPause) } console.log(test) console.log(thisPage.data.pingData[0]) if (v.time < 0) { thisPage.setData({ test: 0, showText: "交换攻防", isPause: true }) console.log(Pause) thisPage.showPopup() } return v; }); thisPage.setData({ listData: list }); //setTimeout里 在第二个函数指定毫秒时后触发第一个函数的方法 //现在语句意思为 =》在time=1000毫秒时,执行setCountDown方法,实则为循环 setTimeout(thisPage.setCountDown, time); } if (Pause == true) { return }
}
补充代码块,目前只用到了一个秒级,但还是很卡
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
补充个代码片段: https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
起码弄个代码片段
setCountDown: function () { var thisPage = this var Pause = thisPage.data.isPause if (Pause == false) { //刷新时间以及递减时间范围 let time = 1000; let wPause = thisPage.data.wasPause let test = thisPage.data.pingData[0].time var Text = thisPage.data.showText let { listData } = thisPage.data; // map里 v为当前数组操作的元素,i为当前元素在数组的坐标 //对数组进行拆包 let list = listData.map((v, i) => { if (v.time < 0) { v.time = 0; } //对元素进行日期输出格式化 let formatTime = thisPage.getFormat(v.time); v.time -= time; v.countDown = `${formatTime.mm}:${formatTime.ss}`; //进行是否曾经暂停 console.log("经过暂停前" +this.data.wasPause) if (wPause == true) { v.time = v.time + 1000; //可以赋值 thisPage.setData({ wasPause: false }) console.log("first time to regoing!") console.log("经过暂停后" + this.data.wasPause) } console.log(test) console.log(thisPage.data.pingData[0]) if (v.time < 0) { thisPage.setData({ test: 0, showText: "交换攻防", isPause: true }) console.log(Pause) thisPage.showPopup() } return v; }); thisPage.setData({ listData: list }); //setTimeout里 在第二个函数指定毫秒时后触发第一个函数的方法 //现在语句意思为 =》在time=1000毫秒时,执行setCountDown方法,实则为循环 setTimeout(thisPage.setCountDown, time); } if (Pause == true) { return }
}
补充代码块,目前只用到了一个秒级,但还是很卡