- 小程序安卓机,在setInterval中使用setData,无效,苹果没问题,是怎么回事啊?
_this.timer = setInterval(() => { const now_time = (new Date()).valueOf(); const second = parseInt((now_time - parseInt(_this.start_t)) / 1000); if (second < _this.INTERVAL) { count = _this.LOW_BASE * second + second % this.LOW_REAMIN; } else { count = _this.UPPER_BASE + (second - _this.INTERVAL) * _this.UPPER_REAMIN + second % _this.UPPER_REAMIN; } if (count < _this.HALF_LIMIT) { showText = `${count}`; } else if (count >= _this.HALF_LIMIT && count <= _this.UPPER_LIMIT) { showText = `${(count / 10000).toFixed(1)}万`; } else { showText = '100万+'; } _this.setData({ countText: showText, }); }, 1000);
2021-11-04 - 小程序的订阅弹窗高度如何控制?部分机型弹窗过大,想在弹窗上面加一个图片,会被遮盖
小程序的订阅弹窗高度如何控制和计算呢,部分机型弹窗过大,想在弹窗上面加一个图片,会被遮盖。
2021-10-11