- getBluetoothDevices调用成功,找不到设备
- 当前 Bug 的表现(可附上截图) 使用wx.getBluetoothDevices API成功,但是搜索不到设备,暂时只发现这款机型出现 - 预期表现 可以搜到蓝牙设备 - 复现路径 - 提供一个最简复现 Demo wx.openBluetoothAdapter({ success: function (res) { wx.startBluetoothDevicesDiscovery({ services: [], allowDuplicatesKey: false, interval: 0, success: (res) => { setTimeout(() => { wx.getBluetoothDevices({ success: (res) => { console.log(res) } }) }, 3000) } }) } })
2018-08-06 - 小程序做媒体播放,灭屏后停目的问题
你想反馈一个 Bug 还是 提一个需求? 如果是 Bug: 小程序做媒体播放,灭屏后停后,播放会自动停止 * 如何复现? 小程序做媒体播放,灭屏后停后,播放会自动停止 如果是需求: 小程序做媒体播放,灭屏后停后,播放会自动停止。 能否做到在播放时,灭屏后还能播放声音。
2018-02-01