我正在尝试将WebUSB api与Chrome 67一起使用。以下代码在一个月前正在运行。我不确定某些事情是否有所改变,或者我是否遗漏了某些东西。我正在尝试申报界面时发生的错误正在发生。
错误消息如下:DOMException: The requested interface implements a protected class.
和An attempt to claim a USB device interface has been blocked because it implements a protected interface class.
window.setInterval(function() {
navigator.usb.getDevices({ filters: [{ vendorId: 0x0b67 }]
}).then(function(devices) {
device = devices[0];
return device.open();
}).then(function() {
return device.selectConfiguration(1);
}).then(function() {
return device.claimInterface(0);
}).then(function() {
return device.transferIn(1, 6);
我找不到有关错误的任何信息,我们将不胜感激任何信息。
答案 0 :(得分:1)