我已經看到使用藍牙的實驗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
。對此有何想法?
乾杯。
在該頁面上有一個關於此擴展程序的巨大警告,可能與Chrome的發佈版本不兼容 - 您是否針對TRUNK版本進行測試? – fvu
我使用的是加那利版本呀;) – p312z