Angular4 - 从页面历史堆栈中删除页面引用

时间:2017-08-31 05:55:57

标签: javascript angular angular2-routing

在我的角度Web应用程序中,需要从角度页面历史堆栈中删除页面引用。例如:我现在从登录页面导航到仪表板页面应该从堆栈中删除登录页面引用。

enter image description here

1 个答案:

答案 0 :(得分:3)

我认为您需要查看https://angular.io/api/router/NavigationExtras#replaceUrl

根据doc:

,导航到组件时需要传递replaceUrl: true
Navigates while replacing the current state in history.

// Navigate to /view
this.router.navigate(['/view'], { replaceUrl: true });