我正在构建秒表,所以我想在完成时间等于设置的时间时实现localNotification。
我正在使用NgCircleProgress插件
if (this.percent === 100) {
console.log('Done!');
this.showToastTimer();
this.notifyMe();
}
吐司后它将关闭应用程序
LocalNotification函数
notifyMe() {
let isAndroid = this.plt.is('android');
this.localNotification.schedule({
id: 1,
text: 'Completed!',
sound: isAndroid
? 'file://assets/sounds/accomplished.mp3'
: 'file://assets/sounds/beyound-doubt.mp3',
foreground: true
});
}