我正在为Android上的PhoneGap 3.0.0测试Tanelih's Bluetooth Plugin的功能。 该插件似乎运行良好;我可以使用链接到JavaScript函数的HTML按钮打开和关闭BlueTooth,并获取onSuccess / onError回调以显示消息是否有效。
但是,当我尝试使用window.bluetooth.isEnabled(isEnabledSuccess, isEnabledError);
启用BlueTooth时,无论蓝牙是启用还是禁用,回调始终是isEnabledSuccess。
以下是我的一些index.html:
<head>
<script type="text/javascript" charset="utf-8">
// Wait for device API libraries to load
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady()
{
window.bluetooth.isEnabled(isEnabledSuccess, isEnabledError);
}
function isEnabledSuccess(isEnabled)
{
var element = document.getElementById('status');
element.innerHTML = "Enabled";
}
function isEnabledError(isEnabled)
{
var element = document.getElementById('status');
element.innerHTML = "Disabled";
}
</script>
</head>
<body>
<p id="status"></p>
</body>
这里有一些bluetooth.js(我没有碰过这个文件):
Bluetooth.prototype.isEnabled = function(onSuccess, onError)
{
exec(onSuccess, onError, "Bluetooth", "isEnabled", []);
}
这里有一些BluetoothPlugin.java(我没有碰过这个文件):
/**
* Is Bluetooth on.
*
* @param args Arguments given.
* @param callbackCtx Where to send results.
*/
private void isEnabled(JSONArray args, CallbackContext callbackCtx)
{
try
{
callbackCtx.sendPluginResult(new PluginResult(PluginResult.Status.OK, _bluetooth.isEnabled()));
}
catch(Exception e)
{
this.error(callbackCtx, e.getMessage(), BluetoothError.ERR_UNKNOWN);
}
}
有没有人有任何想法?
答案 0 :(得分:1)
只有在调用插件期间发生Java异常时才会调用错误函数(这不太可能)。成功函数返回一个布尔值,告诉您蓝牙是否启用。所以,尝试这样的事情:
function onDeviceReady()
{
window.bluetooth.isEnabled(isEnabledSuccess, isEnabledError);
}
function isEnabledSuccess(isEnabled)
{
var element = document.getElementById('status');
if(isEnabled){
element.innerHTML = "Enabled";
}else{
element.innerHTML = "Disabled";
}
}
function isEnabledError(error)
{
var element = document.getElementById('status');
element.innerHTML = "Cannot determine Bluetooth status: " + error.message;
}