USBDevice: phương thức claimInterface()
Khả dụng hạn chế
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Web Workers.
Phương thức claimInterface() của giao diện USBDevice trả về một promise được giải quyết khi giao diện được yêu cầu được chiếm giữ để truy cập độc quyền.
Cú pháp
js
claimInterface(interfaceNumber)
Tham số
interfaceNumber-
Chỉ mục của một trong các giao diện được thiết bị hỗ trợ. Các giao diện mang tính dành riêng cho từng thiết bị.
Giá trị trả về
Một promise.
Ví dụ
Ví dụ sau đây cho thấy claimInterface() trong ngữ cảnh kết nối với một thiết bị USB.
js
async function connectDevice(usbDevice) {
await usbDevice.open();
if (usbDevice.configuration === null) await usbDevice.selectConfiguration(1);
await usbDevice.claimInterface(0);
}
Thông số kỹ thuật
| Thông số kỹ thuật |
|---|
| WebUSB API> # dom-usbdevice-claiminterface> |