HTMLBluetoothElement.close()
WebComponentHTMLBluetoothElementclose小于 1 分钟
打开蓝牙设备;内部实际调用的是 BluetoothPlugin.close()方法
HTMLBluetoothElement.close()
参数
- 无
返回值
返回一个Promise对象,resolve兑现一个BluetoothCloseResponse对象
示例
<body>
<dweb-bluetooth></dweb-bluetooth>
<button>close</button>
<script type="module">
import "@plaoc/plugins"
const bluetooth = document.querySelector("dweb-bluetooth")!
const btn = document.querySelector('button');
btn.addEventListener('click', async () => {
const res = await bluetooth.close();
})
</script>
</body>
平台兼容性
属性/方法/事件 | Android | IOS | Desktop-Dev | Desktop |
---|---|---|---|---|
setColor | ✅ | ✅ | ✅ | X |
相关链接
Powered by Waline v2.15.7