display connection error messages in ionic framewo

2019-03-03 14:15发布

I am developing an ionic mobile app but getting difficulty to display the connection error message. When the device is not connected to the internet or when there is a connection timeout or something then I want to show a popup to display the error message. This is my first time encountering something like this.

1条回答
我欲成王,谁敢阻挡
2楼-- · 2019-03-03 14:35

--first add the plugin to your project then in your app.js include the below code

js

document.addEventListener("offline", onOffline, false);

        $rootScope.online = true;
        function onOffline() {
            // Handle the offline event
            $rootScope.$apply(function() {
                $rootScope.online = false;
               alert("There is no active internet connection to your app. Please check the connectivity.");
               //implement your method off error when the connection terminates

            });
         }

        document.addEventListener("online", function() {
            $rootScope.$apply(function() {
alert("connected");
                $rootScope.online = true;
                $rootScope.closeToast();
            });
        }, false);

here offile will handle the connection termination and online will handle the reconnection and check with the alerts or consoles

查看更多
登录 后发表回答