USB通讯有点问题。我可以连接到USB设备,但我无法将任何数据写入USB设备。
这是我将数据写入USB设备的代码:
fetch(loginApi, {
method: "POST",
headers: {
Accept: "application/json",
"Content-Type": "application/json"
},
body: JSON.stringify({
Password: password,
UserName: username
})
})
.then(response => response.json())
.then(responseData => {
console.log(responseData); //// <--- getting error at this line
})
.catch(error => {
console.error(error);
});
当我使用checkUID()或checkSCardConnect()时,它总是给出错误的条件。是否还有其他使用USB通信编写的程序?