OnsenUI:推送通知

时间:2014-06-09 21:12:29

标签: angularjs mobile push-notification onsen-ui

有没有办法从应用发送通知,而不使用' Push.send()'在后端?我有一个简单的应用程序,使用计时器,当时间结束时,我需要通知用户,如果他当时没有使用该应用程序。

谢谢!

1 个答案:

答案 0 :(得分:2)

我认为无法从PhoneGap应用程序本身发送推送通知。

您可以采用“本地通知”,而不是推送通知。如果是Android,则需要使用AlarmManager和NotificationManager在本地发送通知。

http://developer.android.com/reference/android/app/AlarmManager.html

http://developer.android.com/reference/android/app/NotificationManager.html

但是,如果PhoneGap应用程序无法从JavaScript访问这些本机API。您需要嵌入PhoneGap插件,使JavaScript能够访问这些本机API。