cordova newtork-information插件 - >得到ssid

时间:2016-07-11 08:34:17

标签: android cordova networking

有没有办法从网络中获取ssid? 我可以在连接额外信息下的logcat中看到它:

logcat output

plugin

1 个答案:

答案 0 :(得分:0)

你无法从网络插件中获得ssid。

如果您想获取ssid信息,请使用以下插件WifiWizard

以下是使用上面的插件获取ssid的示例代码

document.addEventListener("deviceready",getCurrentSSID,false);

function ssidHandler(ssid){
    alert("Current SSID"+ssid);
}
function fail(e){
    alert("Failed"+e);
}
function getCurrentSSID(){

    WifiWizard.getCurrentSSID(ssidHandler, fail);
}

希望这会对你有所帮助。