0

我試圖在設備收到通知時重定向到特定頁面。我已經提供了以下代碼推通知,當它被點擊它如果使用$stateProvider(默認離子)嘗試使用$state.go("menu.notification")重定向到主頁點擊時發送推送通知不會重定向到特定頁面

push.on('notification', function (data) { 
           console.log('push on notification'); 
           console.log(data); 
           NOTIFICATION_CONSTANT = true; 
           $location.path('/menu/notification'); 
           console.log(NOTIFICATION_CONSTANT); 
           if (data.additionalData && data.additionalData.additionalData !== 'NOT_SHOW') { 
            //$rootScope.$emit('pushNotification'); 
           } 
+0

如果您使用'$ stateProvider'(默認爲離子)嘗試使用'$ state.go(「menu.notification」)'它爲我工作。 – yaswanthsvist

+0

這裏是我的工作代碼'push.on('notification',function(data){$ state.go(「app.orders」);});' – yaswanthsvist

+0

感謝一噸.......它的工作正常現在 –

回答

0

+0

感謝一噸.......它現在工作得很好 –

相關問題