5

我正在尝试新的 Chrome WebUSB API,但看不到任何连接的设备。

例如,尝试使用不同的 USB 设备连接到我的 Windows 7 PC:

<html>
    <body>
        <button onclick="myFunction()">Click me</button>

        <script>
            function myFunction() {
                console.log('Clicked');
                navigator.usb.getDevices()
                  .then(devices => {
                    devices.map(device => {
                      console.log('Device:');
                      console.log(device.productName);
                      console.log(device.manufacturerName);
                    });
                  });
            }
        </script>
    </body>
</html>

但是没有设备。

我究竟做错了什么?它应该适用于任何设备吗?

4

1 回答 1

6

在您的页面请求访问设备的权限之前,navigator.usb.getDevices()将返回一个空列表。在您的onclick处理程序调用navigator.usb.requestDevice()中,使用过滤器选择您想要支持的设备的供应商和产品 ID。请参阅规范中的示例:

let button = document.getElementById('request-device');
button.addEventListener('click', async () => {
  let device;
  try {
    device = await navigator.usb.requestDevice({ filters: [{
        vendorId: 0xABCD,
        classCode: 0xFF, // vendor-specific
        protocolCode: 0x01
    }]});
  } catch () {
    // No device was selected.
  }

  if (device !== undefined) {
    // Add |device| to the UI.
  }
});
于 2017-09-10T19:31:54.147 回答