我目前正在使用蓝牙 API 编写 google chrome 扩展程序(我的 chrome 版本是 chrome-dev,因为蓝牙 API 仅在 chrome-dev 上)。我在此脚本 (notify.js) 的第一行收到“意外标识符错误”
chrome.bluetooth.getAdapterState( function(AdapterState result) {
if (result.powered == false || result.available == false ) {
alert("no bluetooth!!!");
} else {
alert("bluetooth!!!");
}
});
有谁知道如何解决这个问题?谢谢