要在Angular中使用包含哈希的路由路径,可以使用HashLocationStrategy提供的解决方案。以下是一个示例:
import { HashLocationStrategy, LocationStrategy } from '@angular/common';
@NgModule({
declarations: [
// ...
],
imports: [
// ...
],
providers: [
{ provide: LocationStrategy, useClass: HashLocationStrategy }
],
bootstrap: [AppComponent]
})
export class AppModule { }
这样,当用户点击导航链接时,Angular将使用包含哈希的路由路径进行导航。例如,当用户点击Home链接时,URL将变为http://example.com/#home。