在Angular中,可以使用Angular路由器的APP_BASE_HREF
提供商来更改URL的基本href。以下是一个示例解决方法:
app.module.ts
文件中导入下面的模块和组件:import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouterModule } from '@angular/router';
import { APP_BASE_HREF } from '@angular/common';
import { AppComponent } from './app.component';
import { HomeComponent } from './home.component';
import { AboutComponent } from './about.component';
@NgModule({
imports: [BrowserModule, RouterModule.forRoot([
{ path: '', component: HomeComponent },
{ path: 'about', component: AboutComponent }
])],
declarations: [AppComponent, HomeComponent, AboutComponent],
providers: [{ provide: APP_BASE_HREF, useValue: '/my-app' }],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.html
文件中,添加一个导航菜单,以显示链接到不同路由的按钮:
index.html
文件中的
标签中添加以下代码,将
标签的href
属性设置为您想要的基本href路径:
...
通过执行以上步骤,您可以将Angular应用的URL更改为基本href路径/my-app/
。请根据您的实际需求修改APP_BASE_HREF
和
的值。