WebUSB API 受保护接口 class 错误
WebUSB API protected interface class error
我正在尝试将 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);
我找不到有关该错误的任何信息,如有任何信息,我们将不胜感激。
我正在尝试将 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);
我找不到有关该错误的任何信息,如有任何信息,我们将不胜感激。