我正在使用 Ionic 2 rc4。
我有一个更新用户上次访问时间戳的功能。
每次访问应用程序时,我都需要执行此功能。有没有地方可以打这个电话?
我想过在platform.ready().then(() => {...}
的app.component.ts
中调用,但我认为这只会在应用程序启动时被调用一次,除非应用程序被杀死,否则不会再次调用。
谢谢
我认为你需要这个:
platform.ready().then((readySource) => {
this.platform.pause.subscribe(() => {
//App paused or closed
});
this.platform.resume.subscribe(() => {
//App resumed or start
});
});
将此代码放在 MyApp 构造函数中。