我正在尝试在Visual Studio 2019中使用Web蓝牙API。javascript可以编译并正常运行,但是intellisense无法识别类navigator.bluetooth以便显示自动填充的建议。不知道发生了什么。
function buttonOnClick() {
navigator.bluetooth.requestDevice({
filters: [{
services: [0x1010]
}]
})
上面是我要运行的代码的一小段。任何帮助将不胜感激!
谢谢!