标签: angular ionic-framework angular-ui-router ionic4
我使用 Ionic 4 和 Angular 7
浏览Web应用程序时我想隐藏页面的URL
在我的应用程序中有此网址,可见
我想要获得的结果如下:
谢谢
答案 0 :(得分:1)
在这种情况下,您可以使用skipLocationChange属性。
示例:
this.router.navigate(['/yourview'], { skipLocationChange: true });
答案 1 :(得分:1)
您无法隐藏Web上的地址/网址栏,因为它是预期的行为。 您可能想到的一种选择是伪造的:自动隐藏浏览器
window.scrollTo(0,1);