如何使用sencha touch2检查ipad中哪种类型的wifi连接

时间:2012-07-06 06:55:27

标签: javascript sencha-touch sencha-touch-2

我使用sencha touch2开发了联系人屏幕页面。我的要求是,基于2G / 3G的wifi连接类型取决于此。我想在ipad中禁用一些按钮。任何人都可以提供使用sencha touch2实现这一目标的最佳方法。

1 个答案:

答案 0 :(得分:1)

我在sencha网站上搜索过,他们清楚地知道如何获得互联网连接类型。它工作正常。

这是解决方案:

Determining if the current device is online:

alert(Ext.device.Connection.isOnline());

Checking the type of connection the device has:

alert('Your connection type is: ' + Ext.device.Connection.getType());

The available connection types are:

    UNKNOWN - Unknown connection
    ETHERNET - Ethernet connection
    WIFI - WiFi connection
    CELL_2G - Cell 2G connection
    CELL_3G - Cell 3G connection
    CELL_4G - Cell 4G connection
    NONE - No network connection