第一张图是企微的:有麦克风开发也没主动唤起过
第二张图是微信的:没有麦克风开关。使用代码唤起也没执行。 wx.authorize的sucess和fail都没执行
wx.getSetting({
success: (res) => {
if (!res.authSetting['scope.record']) {
console.log('这里进来了')
wx.authorize({
scope: 'scope.record',
success: () => {
console.log('没打印1')
},
fail: () => {
console.log('没打印2')
}
});
} else {
this.initRecorderManager();
}
}
});
查询资料说需要配置隐私权限,我后台也申请配置了
但是还没没有。请问有遇到过嘛

必须通过用户触发授权后在设置里才能看到开关。