我看到最近发布了用于使用蓝牙的实验性 API,我想进行一些测试。我查看了http://code.google.com/chrome/extensions/trunk/experimental.bluetooth.html上的官方文档,但即使是最简单的示例也行不通。当然,为了使用实验性 API,我之前正确设置了权限。
我的 background.js 看起来像这样:
function booleanCallback(result) {
alert(result.toString());
}
chrome.experimental.bluetooth.isPowered(booleanCallback);
不管怎样,result
总是undefined
。对此有什么想法吗?
干杯。