- 小程序跳转,自定义编译extraData的内容在开发环境中无法解析
开发者工具版本171019,自定义编译条件,选择1037:从小程序进入,设置extraData写的是:{"test":"5"} 在程序中,用下面方式取值: var appInstance = getApp(); console.log(appInstance.globalData.extraData) that.data.test = appInstance.globalData.extraData.test console.log(that.data.test) 但在console中,打印出来的appInstance.globalData.extraData是{"test":"5"},但appInstance.globalData.extraData.test就成了undefine 不知道是哪里的问题?
2017-11-02 - 微信升级6.5.13后,wx.hideLoading()无法消除mask
经对比测试,6.5.13之前版本没有此问题
2017-08-08 - wx.getBluetoothDevices返回的name是“未知设备”
现象如下: 用下面的代码,在从来没有扫描过本小程序的iOS上,扫描进入,调用对应代码,会打印出一系列的: 扫到的:未知设备 扫到的:未知设备 扫到的:未知设备 扫到的:未知设备 而关闭系统蓝牙再打开,再扫,还是如此。 而将微信后台清掉,再进入微信,进入本小程序,再扫,每个设备的名字就准确的扫描出来了。之后,就都能准确扫到了。 使用新的iOS手机能复现。 代码片段如下: wx.startBluetoothDevicesDiscovery({ services: ['FFE5'], // 只搜索含有FFE5主服务的uuid allowDuplicatesKey: false, interval: 100, success: function (res) { console.log('开启BLE发现服务成功') that.DeviceScanInterval(operType) }, fail: function (res) { } }) DeviceScanInterval: function (operType) { wx.getBluetoothDevices({ success: function (res) { console.log('在寻找设备:' + that.data.DeviceId) that.data.signalStrength = 0 var i = 0 for (; i < res.devices.length; i++) { console.log('扫到的:' + res.devices[i].name) if (res.devices[i].name == that.data.DeviceId) { console.log('已搜索到指定设备') //-------------停止蓝牙BLE扫描------------------ wx.stopBluetoothDevicesDiscovery({ complete: function () { } }, }) break } } }, fail: function (res) { console.log(res) that.data.signalStrength = 0 }, }) }
2017-08-02