postNotification期望包含不相关字段的OSNotification对象

时间:2017-06-20 14:03:21

标签: ionic2 onesignal

我正在使用Ionic 2和OneSignal原生插件。

我正在尝试使用postNotification函数,但我无法编译代码:

let notificationObj = {
      contents: { en: content },
      headings: { en: title },
      include_player_ids: [playerIds],
      ios_badgeType: 'Increase',
      ios_badgeCount: 1
    };
    return this.oneSignal.postNotification(notificationObj);

错误告诉我,我的OSNotification缺少诸如isAppInFocus,显示等字段。

但这看起来就像你处理一个通知时所期望的那样。发送它时我没有预先知道这些值...任何线索?

0 个答案:

没有答案