在Angular 7中,如果你在路由配置中使用了base href,并且它被添加到了路径中,你可以尝试以下解决方法:
import { NgModule } from '@angular/core';
import { APP_BASE_HREF } from '@angular/common';
@NgModule({
providers: [{ provide: APP_BASE_HREF, useValue: '/your-base-href/' }],
// other module configurations...
})
export class AppModule { }
// 使用相对路径导航
this.router.navigate(['/dashboard']);
// 使用绝对路径导航
this.router.navigate(['https://example.com/dashboard']);
// 正确的重定向路径
{ path: '', redirectTo: 'dashboard', pathMatch: 'full' }
// 错误的重定向路径
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' }
通过检查以上几个方面,你应该能够解决“Angular 7路由错误base-href被添加到路径中”的问题。