我正在使用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,显示等字段。
但这看起来就像你处理一个通知时所期望的那样。发送它时我没有预先知道这些值...任何线索?