Ionic2如何使用app从外面推送页面

时间:2017-04-03 04:44:51

标签: ios cordova angular ionic2

enter image description here

我使用了深度链接进行社交分享[ionic deeplink plugin],当我点击twitter分享链接时,它会重定向到相应的页面。但标签没有出现。我使用以下代码进行社交分享。

 Deeplinks.routeWithNavController(this.nav, {
                '/category/:postId':'Here PageName'
                }).subscribe((match) => {
                console.log('Successfully routed', match);
                }, (nomatch) => {
                console.log('Not matched', nomatch);;
            });

对于Nav push我使用了以下代码

this.nav.push(TabsNavigationPage);

如何解决此问题?

0 个答案:

没有答案