- webview组件在ios的问题?
使用webview跳转链接,在安卓上没问题,在iphone 14P上显示无法打开该页面 安卓打开的样子 [图片] iphone打开的样子 [图片]
02-20 - chooseImage API调用问题?
代码片段 getPrivacySetting片段: wx.getPrivacySetting({ success: res => { console.log(res) // 返回结果为: res = { needAuthorization: true/false, privacyContractName: '《xxx隐私保护指引》' } if (res.needAuthorization) { // 需要弹出隐私协议 } else { // 用户已经同意过隐私协议,所以不需要再弹出隐私协议,也能调用已声明过的隐私接口 } }, fail: () => {}, complete: () => {} }) chooseImage片段 uni.chooseImage({ count: 1, sizeType: ['original'], sourceType: ['camera'], success: res => { console.log(res) }, fail: e=> { console.log(e) } }) 结果:[图片] 已经使用getPrivacySetting去查找了是否需要弹窗授权了,给的是否,然后再去点击上传图片的时候,又会出现"chooseImage:fail api scope is not declared in the privacy agreement"报错
2023-11-07 - 静态网站 H5 跳小程序?
文档地址:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/staticstorage/jump-miniprogram.html 调用是成功的,但是没有返回跳转的链接,即文档所展示的openlink [图片]
2023-10-16 - startRecord?
大佬们,CameraContext.startRecord拍出的视频是压缩的吗?比相机拍摄要模糊很多呀!!!
2022-05-09