Titanium:打开应用程序时检查iOS通知,而不单击通知

时间:2017-05-04 11:48:26

标签: ios titanium appcelerator appcelerator-titanium titanium-alloy

我正在尝试处理iOS上的推送通知。

我的简单代码与此类似:

var Cloud = require("ti.cloud");
var deviceToken = null;

var deviceToken = Ti.App.Properties.getString('deviceToken');

Ti.App.iOS.registerUserNotificationSettings({
    types: [
        Ti.App.iOS.USER_NOTIFICATION_TYPE_ALERT,
        Ti.App.iOS.USER_NOTIFICATION_TYPE_SOUND,
        Ti.App.iOS.USER_NOTIFICATION_TYPE_BADGE
    ]
});

Ti.App.iOS.addEventListener('usernotificationsettings', function registerForPush() {
    Ti.App.iOS.removeEventListener('usernotificationsettings', registerForPush); 

    Ti.Network.registerForPushNotifications({
        success: function(e) {
            if (e.deviceToken !== Ti.App.Properties.getString('deviceToken', null)) {
                deviceToken = e.deviceToken;
                Ti.App.Properties.setString('deviceToken', deviceToken)
                subscribeToChannel();
            } else {
                Ti.API.info('Already registered for push notifications!');
            }
        },
        error: function(e) {
            Ti.API.error('Failed to register for push notifications: ' + e.error);
        },
        callback: receivePush
    });

});

function subscribeToChannel () {
    Cloud.PushNotifications.subscribeToken({
        device_token: deviceToken,
        channel: 'general',
        type: Ti.Platform.name == 'android' ? 'android' : 'ios'
    }, function (e) {
          alert(e.success === true ? 'Subscribed' : 'Error!');
    });
}

// When receieve interactive remote notification
Ti.App.iOS.addEventListener('remotenotificationaction', function(e) {
    alert('remotenotificationaction: ' + JSON.stringify(e));
});

// When receieve interactive notification in the background
Ti.App.iOS.addEventListener('localnotificationaction', function(e) {
    alert('localnotificationaction');
});

// When receieve interactive notification in the foreground 
Ti.App.iOS.addEventListener('notification', function(e) { 
    alert('notification');
});

function receivePush(e) {
    alert('receivePush');
}

大多数情况下一切正常。发送远程推送通知时会发生以下情况:

  • 当应用在后台时,会显示通知。点击通知后,我会收到" receivePush"消息,正如预期的那样
  • 当应用程序位于前台时,不会显示通知,但我仍然会收到" receivePush"消息,正如所料。
  • 但是,当我在应用程序处于后台时收到通知,然后直接点击应用程序(即不点击通知)时,上述事件都不会被触发!

如何确保在最后一个案例中触发事件。

1 个答案:

答案 0 :(得分:1)

我不认为这是可能的,因为您的回调函数被分配了通知行为,而不是应用程序启动。如果您知道我的意思,这不是Titanium问题,而是工作流程的误解。 我认为最好在应用程序启动时始终检查某些内容,与通知无关。