我有一个角度应用程序使用路由与HashLocationStrategy,我需要在主html文件中设置不同的值,并在路由中不同。
我尝试了这个解决方案:
@NgModule({
imports: [
BrowserModule,
FormsModule,
HttpModule,
MyRouting // with useHash set to true
],
declarations: [
AppComponent,
],
providers: [
{ provide: APP_BASE_HREF, useValue: '/prefix' }
],
bootstrap: [AppComponent]
})
export class AppModule { }
工作得很好,但价值' /前缀'在哈希之后插入,如下所示:
http://myapp.com/#/prefix/home
我想要:
http://myapp.com/prefix/#/home
为清楚起见,我的基本标签是:
<base href="/">
答案 0 :(得分:10)
我遇到了同样的问题并用我自己的HashLocationStrategy子类修复了它
import { Injectable } from '@angular/core';
import { HashLocationStrategy } from '@angular/common';
@Injectable()
export class CustomLocationStrategy extends HashLocationStrategy {
prepareExternalUrl(internal: string): string {
return this.getBaseHref() + '#' + internal;
}
}
然后在我的模块中使用它
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { LocationStrategy } from '@angular/common';
import { APP_BASE_HREF } from '@angular/common';
import { CustomLocationStrategy } from './app.common';
const appRoutes: Routes = [...];
@NgModule({
imports: [
RouterModule.forRoot(appRoutes, { useHash: true })
],
providers: [
{ provide: APP_BASE_HREF, useValue: window.location.pathname },
{ provide: LocationStrategy, useClass: CustomLocationStrategy },
]
})
export class AppModule {
}
答案 1 :(得分:1)
yahoooooooooooo !!让它发挥作用。
在index.html文件中,将baseurl指定为&#34;。&#34; 像这样:
<base href=".">
并在providers
的{{1}}装饰器的NgModule
媒体资源中指定哈希位置策略,如下所示:
app.module.ts
请参阅:https://github.com/datumgeek/plotter-app-seed-angular2/blob/master/src/app/app.module.ts#L26