我正在使用Phonegap,HTML5创建移动应用。这将针对Android设备。 此应用应该能够通过通知助手为用户提供流量更新 是否有人做过这样的项目,并可以指导我在这样的应用程序,任何建议将非常感谢。
答案 0 :(得分: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 ??
}
});
}