0
有沒有辦法從網絡獲取ssid? 我可以看到它在logcat的連接下額外的信息:cordova newtork-information plugin - > get ssid
有沒有辦法從網絡獲取ssid? 我可以看到它在logcat的連接下額外的信息:cordova newtork-information plugin - > get ssid
您水溼從網絡插件獲取SSID。
如果你想要得到的SSID信息使用下面的插件WifiWizard
以下是示例代碼段使用上述插件
document.addEventListener("deviceready",getCurrentSSID,false);
function ssidHandler(ssid){
alert("Current SSID"+ssid);
}
function fail(e){
alert("Failed"+e);
}
function getCurrentSSID(){
WifiWizard.getCurrentSSID(ssidHandler, fail);
}
希望這將有助於你得到的SSID。
謝謝:)爲我工作:) – randomGuy