- 保存图片授权打开设置看不到相册设置?
开发版、体验版都能正常授权 就正式版不行 savePosterTap() { let that = this // 向用户发起授权请求 uni.authorize({ scope: 'scope.writePhotosAlbum', success: (e) => { console.log(e) // 已授权 that.downLoadImg() }, fail: () => { // 拒绝授权,获取当前设置 uni.getSetting({ success: (result) => { console.log(result) if (!result.authSetting['scope.writePhotosAlbum']) { that.isAuth() } } }) } }) }, downLoadImg() { let that = this uni.showLoading({ title: '加载中' }) uni.downloadFile({ url: that.promote_img, success: ({ tempFilePath, statusCode }) => { uni.hideLoading() if (statusCode === 200) { uni.saveImageToPhotosAlbum({ filePath: tempFilePath, success(e) { console.log(e) uni.$u.toast('保存成功') that.isshow = false }, fail(e) { console.log(e) uni.$u.toast('保存失败') that.isshow = false } }) } }, fail: (error) => { console.log(error) uni.$u.toast('失败啦') } }) }, /* * 引导用户开启权限 */ isAuth() { uni.showModal({ content: '检查到您没打开保存到相册的权限,是否现在去打开?', success: (res) => { if (res.confirm) { uni.openSetting({ success: (result) => { console.log(result.authSetting) }, fail: (e) => { console.log(e) } }) } } }) }
2023-07-27 - 保存图片到相册?
体验版在设置里面能看到保存到相册的设置~ 正式版没有这个设置项不能保存图片
2023-07-27 - 审核问题
审核老返回小程序涉及建群、拉群,请补充选择社交-社区/论坛类目,这都已经改了~ 过一段时间提交又会提示这些?
2018-07-23 - 小程序审核
我小程序版本带群的字样我都取消了~ 但是现在审核还是提示有建群拉群?
2018-06-29 - 审核老说我有建群拉群
上个版本通过了,下个版本又来了~ 我把里面带群字的都取消了的
2018-06-29 - 小程序审核不通过
返回信息说我小程序有建群拉群,我没有这些的~ 请帮忙看看
2018-06-21 - 微信报出的错误
console.dir is not a function;at pages/detail/detail detail function;at api request success callback function 这是什么情况出现的错误怎么解决?
2018-06-12 - 小程序审核不通过说我有社群tab
但是我已经去掉小程序的社群字样,为什么还是审核不过?
2018-06-05