sencha touch2 を使用してコンタクト画面ページを開発しました。私の要件は、2G/3G のような Wi-Fi 接続のタイプに基づいていることです。iPadの一部のボタンを無効にしたい。sencha touch2 を使用してこれを達成するための最良の方法を提供できる人はいますか。
質問する
621 次
1 に答える
1
インターネット接続の種類を取得する方法を明確に示している sencha の Web サイトを検索しました。それは正常に動作しています。
ここに解決策があります:
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
于 2012-07-06T08:33:21.510 に答える