如何在 Ionic2 中保存来自 FCM 的设备令牌



我正在使用FCM插件为ionic2执行推送通知。参考 : https://www.npmjs.com/package/cordova-plugin-fcm34

我跟着 https://github.com/edismooth/ionic2-firebase/tree/master42

它工作正常,我可以从火力基地控制台收到推送。现在我想构建自己的服务器,让管理员使用自己的后端发送推送通知。

我面临的一个问题是:我可以获取设备令牌,但是,我不知道如何保存它。以下是我获取令牌的代码:

initializeApp() {
    this.platform.ready().then(() => {
      // Okay, so the platform is ready and our plugins are available.
      // Here you can do any higher level native things you might need.
      StatusBar.styleDefault();
       FCMPlugin.getToken(
                function (token) {
                    console.log(token); //I can successfully get the token, but I don't know how to return it.
                    alert(token);
                },
                function (err) {
                    console.log('error retrieving token: ' + err);
                }
            );

我已经尝试了许多方法,例如"返回值","存储到有价值的";但是,我仍然不知道如何从"FCMPlugin.getToken"函数中获取它。

有人可以帮忙吗?谢谢

您可以使用箭头函数,如下所示:

initializeApp() {
    // ...
    FCMPlugin.getToken(
       (token) => { this.saveToken(token); },
       (err) => { this.showError(err); }
    );
    // ...
}
// ...
private saveToken(token: string): void {
    // Save the token in the storage...
}
private showError(error: any): void {
    // Show the error to the user
}

不同之处在于,现在您正在使用箭头函数和...

箭头函数表达式的语法比函数短 表达式并且不绑定自己的 this、参数、super,或 新目标。

因此,当您在箭头函数中使用this时,它仍将引用组件实例(而不是当前函数(。

login()函数中,您可以使用此代码

this.push.register().then((t: PushToken) => {
  return this.push.saveToken(t);
}).then((t: PushToken) => {
  console.log('Token saved:', t.token);
});

当用户登录您的应用程序时,您可以保存他们的设备令牌...

相关内容

  • 没有找到相关文章

最新更新