- 图片组件image的bindload加载,未完成加载但触发bindload函数?
图片没有完全加载完图片,但是触发了bindload函数,导致占位图提前换成了真实图片 [图片] 代码片段: js: getimage(e) { var list = this.data.dataList; list[e.currentTarget.dataset.index].src = e.currentTarget.dataset.src; this.setData({ dataList: list, }) }, wxml: <image lazy-load="true" src="{{item.src}}" data-src="{{item.pictures[0]}}" data-index="{{index}}" class="prodimg" style="height:{{item.picheight}}rpx;" bind:load="getimage" mode="aspectFill" />
02-26 - wx.saveVideoToPhotosAlbum在IOS环境中报错,但安卓或者调试器都能正常保存?
代码片段:wx.downloadFile({ url: that.data.action.video, // 下载视频路径 filePath: filepath, header: { 'content-type': 'application/json' }, success: res => { console.log("保存视频",res); var url = res.filePath wx.saveVideoToPhotosAlbum({ filePath: url, success(res) { console.log(res); that.savepictures(0) }, fail: error => { console.log("保存失败原因",error); wx.showToast({ title: '视频保存失败', icon: 'none' }) that.savepictures(0) } }) }, fail: error => { console.log(error) wx.showToast({ title: '视频太大无法保存', icon: 'none' }) that.savepictures(0) } }) [图片]
2023-07-04 - 为什么公众平台无对公账号注销账号过了6天都没用反应?
为什么公众平台无对公账号注销账号过了6天都没用反应?腾讯客服那里也没有给答复,官方能给个解释吗,不是说好72小时会答复的吗,小程序账号gh_be169262a2e5
2022-11-08 - 小程序二次审核已经7个自然日了怎么还没有预上线?
小程序二次审核已经7个自然日了怎么还没有预上线
2022-07-12