我们可以使用useHash选项,将路由器配置为使用哈希标记来处理URL。在使用哈希标记时,Angular将忽略URL中的基础路径,以确保路由器正确解析。以下是示例代码:
在app.routing.module.ts中:
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { HomeComponent } from './home/home.component';
import { ContactComponent } from './contact/contact.component';
const routes: Routes = [
{ path: 'home', component: HomeComponent },
{ path: 'contact', component: ContactComponent },
{ path: '', redirectTo: '/home', pathMatch: 'full' }
];
@NgModule({
imports: [
RouterModule.forRoot(routes, { useHash: true })
],
exports: [RouterModule]
})
export class AppRoutingModule { }
在index.html中:
MyApp
// 将基础路径设置为空
使用以上代码设置路由器,将能正确解决Angular路由修改原请求URL基础路径的问题。