个人案例
多次更改文件名,又恢复回去。但故障依旧。不明白又不是什么大的技术难题,解决起来这么费劲吗?
[ app.json 文件内容错误] app.json: app.json 未找到,怎么解决?[ app.json 文件内容错误] app.json: app.json 未找到(env: Windows,mp,1.05.2105170; lib: 2.17.0)怎么解决?请各位指教,谢谢! [图片]
2021-08-27多谢!问题解决了
unable to evaluate symlinks in Dockerfile path ?[图片]
2021-07-02我现在是创建实例失败,详见我上一个帖子 [图片]
系统创建的云环境如何进入shell命令行窗口?如题
2021-07-01问题已经解决。不能直接用wx.getBluetoothDevices,要wx.startBluetoothDevicesDiscovery 和 wx.onBluetoothDeviceFound配合使用
getBluetoothDevices 始终找不到蓝牙设备,返回结果空。请问是什么原因?微信开发者工具: stable 1.03.2101150。 手机: 华为 FRD AL10 微信8.0,已经开启位置信息。手机蓝牙搜索周围设备功能正常。但就是用小程序搜索不到周边的蓝牙设备 [图片] wx.closeBluetoothAdapter({ complete: (res) => { console.log("已经关闭蓝牙模块") }, }) wx.openBluetoothAdapter({ success: function(res) { console.log(res,"连接蓝牙成功") }, fail: function(res) { console.log("连接蓝牙失败") }, }) //第二步:搜索附近蓝牙,并获取蓝牙列表 wx.startBluetoothDevicesDiscovery({ success: function(res) { / 获取蓝牙设备列表 / console.log("获取蓝牙列表成功!") setTimeout(() => { wx.startBluetoothDevicesDiscovery({ allowDuplicatesKey: true, }) }, 10000); console.log(res) }, fail: function(res) { console.log("获取蓝牙列表失败!") } }) //第三步:选中列表中蓝牙设备,连接蓝牙设备 wx.getBluetoothDevices({ success: function (res) { console.log("得到蓝牙设备!") console.log(res) i=0; while (res.devices[i]) { console.log(i); console.log(res.devices[i].name,res.devices[i].deviceId); if(res.devices[i].name=='Printer001'){ deviceId=res.devices[i].deviceId; console.log(deviceId); } i++; } } })
2021-02-09