- 微信小程序插件 wx.authorizeForMiniProgram 授权弹框调用失败?
wx.getSetting({ success (res) { let recordAuth = res.miniprogramAuthSetting['scope.record'] console.log('是否授权录音') console.log(res) console.log(recordAuth) if (recordAuth) { self.startRecord() } else { // 第一次进来,未发起授权 wx.authorizeForMiniProgram({ scope: 'scope.record', success () { wx.showToast({ title: '授权成功', icon: 'success', duration: 2000 }) }, fail (error) { console.log('authorizeForMiniProgram fail') console.log(error) wx.showToast('error', '鉴权失败,请重试') } }) } }, fail (error) { console.log('getSetting fail') console.log(error) wx.showToast('error', '鉴权失败,请重试') } })
2023-12-22 - 开发原生微信小程序,使用setInterval时,清除clearInterval失败,根本停不下来?
mac 微信开发者工具 开发原生微信小程序,使用setInterval时,清除clearInterval失败,根本停不下来... [图片]
2022-04-13