当我关闭我的应用程序时,通知不起作用,因此我需要打开我的应用程序才能接收所有通知。
有没有用于此的插件?我尝试使用背景模式,但我的应用程序无法工作
app.components.ts
import { BackgroundMode } from '@ionic-native/background-mode';
constructor(private backgroundMode: BackgroundMode, platform:
Platform,statusBar: StatusBar,splashScreen: SplashScreen,
private storage: Storage) {
this.backgroundMode.enable();
}
答案 0 :(得分:0)
请多读一些官方文档。可能您必须安装并使用Push插件https://ionicframework.com/docs/native/push/。
很显然,您需要在服务器上提供一些将消息推送到任何客户端的后端服务。