- 相册(仅写入)权限调用失败?
[图片] 隐私协议里添加了。并且隐私协议已经审审核过了 [图片] 代码权限里也申请了。 [图片] 设置里没有相册权限。图片没法保存。难道是体验版没有相册写入权限?只有上线的小程序才可以? [图片] uni.authorize({ scope: 'scope.writePhotosAlbum', success() { // 用户已经授权,可以保存图片 uni.canvasToTempFilePath({ canvasId: this.canvasParams.id, success(res) { console.log('res=', res); uni.saveImageToPhotosAlbum({ filePath: res.tempFilePath, success(res2) { console.log('res2=', res2); self.$emit('saved', 'showPosterPopup'); uni.hideLoading(); uni.showToast({ title: '图片保存成功,可以去分享啦~', duration: 2000 }); }, fail() { uni.hideLoading(); uni.showToast({ title: '保存失败,请检查权限', duration: 2000, icon: 'none' }); } }); }, fail() { uni.hideLoading(); uni.showToast({ title: '生成图片失败', duration: 2000, icon: 'none' }); } }); }, fail() { // 用户未授权,提示用户去设置页面开启权限 uni.showModal({ title: '提示', content: '需要相册权限才能保存图片,是否去设置开启权限?', success(res) { if (res.confirm) { uni.openSetting({ success(settingRes) { console.log('用户开启了权限', settingRes); } }); } } }); } });
01-13 - 小程序提交发布按钮点击无反应
[图片] 点击按钮没有任何反应
2024-06-25 - iPad上小程序无法禁止屏幕旋转
https://developers.weixin.qq.com/miniprogram/dev/framework/view/resizable.html 在app.json中或者app.json---->window中无论如何设置resizable 都无法使小程序在iPad上禁止屏幕旋转 在iPhone上设置是正常的
2022-08-26 - iPad小程序如何禁止横屏旋转?
zai iPad上小程序如何禁止横屏显示? 在app.json 的window中无论pageOrientation和resizable怎么设置都无法禁止小程序横屏。 [图片] [图片]
2022-08-26 - 模拟器无法旋转
[图片] 按钮是灰的,无法点击。无法查看横屏时的页面 和代码配置有关系吗? [图片]
2022-08-26 - wechatwebdevtools helper疯狂占用cpu,什么鬼?
wechatwebdevtools helper疯狂占用cpu,电脑风扇疯狂地转!电脑卡得不能用。到底是什么鬼👻[图片]
2021-05-21 - 应用官网到底是什么鬼?审核一直不通过
应用官网到底是什么鬼??????审核一直不通过
2021-04-19 - iOS小程序返回App为啥没有回调onResp方法?支付和分享都能正常回调。
iOS小程序返回App为啥没有回调onResp方法?支付和分享都能正常回调。
2020-04-10 - SDK1.8.6iOS wxapi注册失败
急急急!!!SDK1.8.6微信api注册失败错误提示:wxlog:Error:register fail, WeChat scheme(weixinULAPI) is not be added to LSApplicationQueriesSchemes in plist! [图片] 这是为什么?有么有大神遇见过?
2020-01-14 - UniversalLinks如何设置?
https://redhoma.oss-cn-beijing.aliyuncs.com/apple-app-site-association [图片] 微信开放平台Universal Links是需要传入【https://域名+path】是这个意思吗?为啥我的APP registerApp:总是不成功呢?
2020-01-14