项目上有一个消息推送的功能,一开始想使用极光推送,在安卓上测试比较顺利,但是IOS上需要什么证书,没有开发者账号,感觉好麻烦。后面就想在每次启动app的时候,本地推送一次消息,碰巧官网上发现了这个插件,de.appplant.cordova.plugin.local-notification。
image.png
安装插件
ionic cordova plugin add de.appplant.cordova.plugin.local-notificationnpm install --save @ionic-native/local-notifications
安装之后,在app.module.ts中引入provider
import { LocalNotifications } from '@ionic-native/local-notifications';
image.png
使用说明
image.png
testStatus() { this.localNotifications.schedule({ id: 1, title: '筑美通知', text: '这是显示通知栏的内容', icon: 'http://example.com/icon.png', at: new Date(new Date().getTime() + 3000), }); this.localNotifications.on('click', (notification) => { alert(JSON.stringify(notification)); }); }//这里选择在应用启动的时候调用发送一条消息,也就是 调用 this.testStatus()方法。 //如上所示,每条消息可以看成是一个对象,text是内容,title是标题,at表示在通知栏上显示的时间。
this.localNotifications.on('click', (notification) => { alert(JSON.stringify(notification)); });//这部分代码表示在通知栏上点击该通知时对应的回调函数,可以此函数中写逻辑功能。
测试结果如下图所示:
点击消息后的效果
作者:spilledyear
链接:https://www.jianshu.com/p/65d71ad1a8bc
點擊查看更多內(nèi)容
為 TA 點贊
評論
評論
共同學(xué)習(xí),寫下你的評論
評論加載中...
作者其他優(yōu)質(zhì)文章
正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦