要为不同的静态页面设置基础href,可以使用Angular的APP_INITIALIZER提供一个初始化函数来动态设置基础href。
首先,在app.module.ts文件中导入APP_INITIALIZER,并在providers数组中添加一个新的提供者:
import { NgModule, APP_INITIALIZER } from '@angular/core';
@NgModule({
declarations: [
// ...
],
imports: [
// ...
],
providers: [
{
provide: APP_INITIALIZER,
useFactory: initializeApp,
multi: true,
deps: []
}
],
bootstrap: [AppComponent]
})
export class AppModule { }
export function initializeApp() {
return () => {
const baseHref = determineBaseHref();
document.querySelector('base').setAttribute('href', baseHref);
};
}
function determineBaseHref(): string {
// 根据不同的静态页面,返回相应的基础href
const pageUrl = window.location.pathname;
if (pageUrl.includes('page1')) {
return '/page1/';
} else if (pageUrl.includes('page2')) {
return '/page2/';
} else {
return '/';
}
}
在上面的代码中,通过使用APP_INITIALIZER提供的initializeApp函数来初始化应用程序。该函数会在应用程序启动之前运行,并在页面加载时动态设置基础href。
在determineBaseHref函数中,根据当前页面的URL来确定适当的基础href。在示例中,假设对于名为'page1'和'page2'的静态页面,基础href分别为'/page1/'和'/page2/'。其他页面的基础href被设置为默认的根路径'/'。
然后,通过使用document.querySelector('base')来获取页面中的
这样,在应用程序启动时,初始化函数会被调用,根据当前页面的URL来设置基础href。