- 微信小程序开发插件过程中设置了合法域名不生效
var plugin = requirePlugin("myPlugin") Page({ onLoad: function() { // plugin.getData() this.getQrCode(); }, getQrCode: function () { var that = this; var plugin = requirePlugin("myPlugin") Page({ onLoad: function() { // plugin.getData() this.getQrCode(); }, //获取二维码并且跳转 getQrCode: function () { var that = this; wx.request({ url: 'https://rz.weijing.gov.cn/api/getaccesstoken', data: { client_id: '123', client_secret: '3333' }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log("关闭不校验合法域名,可以正常请求") }, fail: function (e) { wx.showModal({ title: '提示', content: JSON.stringify(e), }) } }); } }) 后台设置了合法域名,真机调试的时候关闭调试模式,一直提示,域名不在合法域名列表中,开发工具中关闭不校验合法域名试调是正常的。 [图片] [图片] [图片] [图片]
2018-12-25 - oppo R11s找不到蓝牙设备
- 当前 Bug 的表现(可附上截图) 找不到附近的蓝牙设备 [图片] oppo r11s已经开启了蓝牙,定位,微信也获取了定位权限。仍然搜索不到蓝牙设备,该手机不用小程序是可以搜索到外部的蓝牙设备并且连接上的。 - 预期表现 可以搜索到附近的蓝牙 - 复现路径 - 提供一个最简复现 Demo wx.openBluetoothAdapter({ success(res) { console.log(res) wx.startBluetoothDevicesDiscovery({ interval: '0', success: function (res) { console.log('找到设备', res) wx.getBluetoothDevices({ success: function (res) { console.log('getBluetoothDevices', res); }, fail: function (res) { console.log('getBluetoothDevices 失败', res) } }) }, fail: function (res) { console.log('未找到设备', res) } }) } })
2018-11-14