要在Angular 8中实现路由导航到组件但不更改URL,可以使用Angular的Router模块中的navigate方法。以下是一个示例代码:
首先,确保你的组件导入了Router模块:
import { Router } from '@angular/router';
然后,在组件的构造函数中注入Router:
constructor(private router: Router) { }
接下来,你可以使用navigate方法导航到组件,并设置skipLocationChange选项为true来避免更改URL:
this.router.navigate(['/your-component'], { skipLocationChange: true });
在上面的代码中,'/your-component'是你要导航到的组件的路由路径。
这样,当你调用navigate方法时,它将导航到指定的组件,但不会更改URL。