在微信小程序中实现启动就显示授权页面的方法
通过在小程序中使用wx.getSetting方法查询用户是否授权,从而进入授权页面
wx.getSetting({success(res) {if (!res.authSetting['scope.record']) { wx.authorize({ scope: 'scope.record', success() { } })}}})
wx.getSetting({
success(res) {
if (!res.authSetting['scope.record']) {
wx.authorize({
scope: 'scope.record', success() {
}
})