微信小程序 检查接口状态实例详解
程序员文章站
2022-07-05 20:13:54
微信小程序 检查接口状态实例详解
实例代码:
// 检查接口是否可用
wx.getsetting({
success(res) {
if (!res...
微信小程序 检查接口状态实例详解
实例代码:
// 检查接口是否可用 wx.getsetting({ success(res) { if (!res['scope.record']) { // 接口调用询问 wx.authorize({ scope: 'scope.userinfo', success(res) { wx.startrecord() // 用户已经同意小程序使用录音功能,后续调用 wx.startrecord 接口不会弹窗询问 }, fail() { }, complete() { } }) } } }) scope: 'scope.userinfo', // 用户信息 wx.getuserinfo scope: 'scope.userlocation', // 地理位置 wx.getlocation, wx.chooselocation scope: 'scope.address', // 通讯地址 wx.chooseaddress scope: 'scope.record', // 录音功能 wx.startrecord scope: 'scope.writephotosalbum' // 保存到相册 wx.saveimagetophotosalbum, wx.savevideotophotosalbum
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!