HID:getDevices() 方法

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

安全上下文: 此项功能仅在一些支持的浏览器安全上下文(HTTPS)中可用。

实验性: 这是一项实验性技术
在将其用于生产之前,请仔细检查浏览器兼容性表格

备注: 此特性在 Web Worker(不包括共享 Web Worker)中可用。

HID 接口的 getDevices() 方法获取一个包含用户之前已通过 requestDevice() 调用授予访问权限的已连接 HID 设备列表。

语法

js
getDevices()

参数

无。

返回值

一个兑现一组 HIDDevice 对象的 Promise

示例

以下示例获取设备列表并将设备名称记录到控制台。

js
document.addEventListener("DOMContentLoaded", async () => {
  let devices = await navigator.hid.getDevices();
  devices.forEach((device) => {
    console.log(`HID:${device.productName}`);
  });
});

规范

Specification
WebHID API
# dom-hid-getdevices

浏览器兼容性

BCD tables only load in the browser