ionic plugin network connection Check

ขั้นตอนการติดตั้ง plugin network information

  1. ติดตั้ง ปลั๊กอิน
    $ ionic plugin add --save cordova-plugin-network-information
  2. เพื่มฟังก์ชั่นใน .run
    var myApp = angular.module(‘myapp’, [‘ionic’])
        .run(function($ionicPlatform, $ionicPopup) {
            $ionicPlatform.ready(function() {
                if(window.Connection) {
                    if(navigator.connection.type == Connection.NONE) {
                        $ionicPopup.confirm({
                            title: “Internet Disconnected”,
                            content: “The internet is disconnected on your device.”
                        })
                        .then(function(result) {
                            if(!result) {
                                ionic.Platform.exitApp();
                            }
                        });
                    }
                }
            });
        });
  3. ทำการทดสอบการทำงาน

แหล่งที่มา คลิ๊ก

Share
User Avatar

admin

ประวัติการศึกษา ระดับปริญญาตรี : วิศวกรรมโทรคมนาคม คณะวิศวกรรมศาสตร์ พระจอมเกล้าเจ้าคุณทหารลาดกระบัง ระดับปริญญาโท : วิศวกรรมคอมพิวเตอร์ คณะวิศวกรรมศาสตร์ มหาวิทยาลัยสงขลานครินท์ หาดใหญ่

You may also like...

Leave a Reply