亲爱的企鹅公司你们的文档能不能更新下
wx.getSetting({
success(res) { if (!res['scope.record']) {
wx.authorize({
scope: 'scope.record',
success() { // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
wx.startRecord()
}
})
}
}
})
这是文档中代码,从res中根本取不到scope.record。它在res.authSetting[‘scope.record’]中