跳至主要內容

HTMLBluetoothElement

BFChainWebComponentHTMLBluetoothElement小于 1 分钟

HTMLBluetoothElement 是蓝牙相关的 WebComponent;
继承与 HTMLElementopen in new window;

<dweb-bluetooth></dweb-bluetooth>

属性

方法

事件

支持任意事件,无预定义事件;

示例

<body>
  <dweb-bluetooth></dweb-bluetooth>
  <button>open</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.open();
    })
  </script>
</body>

平台兼容性

属性/方法/事件AndroidIOSDesktop-DevDesktop
pluginX
openX
closeX
requestAndConnectDeviceX

相关链接

Plaoc Webcomponent

评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.7