我使用了深度链接进行社交分享[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);
如何解决此问题?