- webp图片无法上传?
2024年了,离了大谱。 image组件能支持webp格式,打包上传时竟然不支持。 属实老太太进被窝。 [图片]
07-11 - saveImageToPhotosAlbum iphone15pro max提示成功相册中却没有图片
问题描述: 测试机型huaweiP50 Pro,iphone12 Pro正常保存;iphone15 Pro max提示保存成功,相册中找不到目标图片。 图片保存前已确认以下内容: download地址已在后台配置;相册保存权限已授权;隐私协议已同意。示例代码: Page({ bindPlay() { wx.downloadFile({ url: 'https://res.wx.qq.com/community/dist/community/images/icon_question_4b2595.svg', success: function (res) { wx.saveImageToPhotosAlbum({ filePath: res.tempFilePath, success: (res) => { console.log('res2: ', res); wx.hideLoading({ complete: () => { wx.showToast({ icon: 'none', title: '图片已成功保存至手机相册' }); } }) }, fail: (err) => { console.log('err2: ', err); wx.hideLoading({ complete: () => { wx.showToast({ icon: 'none', title: '图片保存失败' }); } }) } }) }, fail(err){ console.log('err',err) } }) }, })
2023-12-05