时间:2019-05-07 来源:小程序工厂
钟***:
ios是 iphone6
邓***:
你好,请具体描述问题出现的流程,并提供能复现问题的简单代码示例。
【】微信小程序嵌入网页的问题
钟***:
第一个问题,蓝牙开启状态下,iphone6,页面onLoad调用bluetoothInit走fail回调,这个问题偶现;
第二个问题,今天竟然好了,纳闷
bluetoothInit() {
return new Promise((resolve, reject) => {
if (wx.openBluetoothAdapter) {
wx.openBluetoothAdapter({
success: (res) => {
console.log("初始化success", res)
resolve(res)
},
fail: (res) => {
console.log("初始化fail")
reject(res)
}
})
} else {
wx.showModal({
title: '温馨提示',
content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
})
}
})
}
胡***:
我也遇到了上诉问题1,以前可以,最近使用好几个ios手机测试wx.openBluetoothAdapter接口都会进入到错误回调,所以是不是基础库出了问题,麻烦看看解决下,谢谢。
梁***:
同样出现这个问题,昨天好好,今天在蓝牙打开状态下(状态栏有显示蓝牙图标)onLoad调用wx.openBluetoothAdapter就走fail,重启一下蓝牙又好了
APP分享出的微信小程序能否知道是否分享群?-微信小程序开发