我使用下一个指南:http://msdn.microsoft.com/es-es/library/windows/apps/hh700381.aspx 但是连接的财产不存在
var red = Windows.Networking.Connectivity.NetworkInformation,
internet = red.getInternetConnectionProfile();
console.log(internet.connected);
答案 0 :(得分:0)
该MSDN页面出错 - 连接属性不存在。 (我将在该主题上提交错误!)。
如果您没有任何连接,则getInternetConnectionProfile将返回null以开始。
您可以在网络信息示例http://code.msdn.microsoft.com/windowsapps/Network-Information-Sample-63aaa201的方案1中看到正确的代码。这是该主题中的代码最初采用的地方,显然两者不同步。