我一直在使用https://github.com/parsonsmatt/WifiWizard来获取iOS和Android上的Wifi信息(特别是连接的SSID)并且它非常棒。这个插件不支持Windows / Windows Phone但是,有没有办法在Windows或Windows Phone上看到连接的Wifi SSID的名称?
答案 0 :(得分:0)
function getWifiSsid() {
if (device.platform === 'windows') {
let profile = Windows.Networking.Connectivity.NetworkInformation.getInternetConnectionProfile();
if (!profile) {
throw 'No network connected';
}
if (profile.isWlanConnectionProfile && profile.wlanConnectionProfileDetails) {
return profile.wlanConnectionProfileDetails.getConnectedSsid();
} else {
throw 'Wlan not connected';
}
} else {
// todo
}
}