0

我正在使用 Phonegap、HTML5 创建一个移动应用程序。这将针对 Android 设备。这个应用程序应该能够在通知的帮助下向用户提供流量更新。是否有人做过这样的项目并可以指导我做这样的应用程序,任何建议都将不胜感激。

4

1 回答 1

0

有一个推送通知插件 https://github.com/phonegap-build/PushPlugin

这是一篇关于这样做的文章

http://www.adobe.com/devnet/phonegap/articles/android-push-notifications-with-phonegap.html

您也可以从任何地方使用 ajax 进行相反的拉动。这是一个使用 jquery ajax 调用的示例。

function sendToServer(request, onSuccess) {
    LOG("sendToServer - " + request);

    $.ajax({
        type: "GET",
        url:  ServiceHandlerURL + request,
        dataType: "xml",
        success: onSuccess,
        error: function (xhr, status, error) {
                LOG("Request URL Error: " + xhr.responseText + " | " + status + " | " + error);
           if (error != ""){
               navigator.notification.alert("An Error occurred. May be due to loss of internet connection. Error: " + xhr.responseText + " | " + error);}
                // navigator.app.exitApp(); // ?? what to do ??
           }
    });
}
于 2013-07-31T16:42:54.650 回答