如何从index.html在Angular 8应用程序中动态定义“ base href”?
我以前使用过blank?
,但现在不支持。
答案 0 :(得分:0)
您可以通过脚本设置属性并将其放入NgModule中来动态设置基本href。
//index.html
<script>
window['base-url'] = window.location.pathname;
</script>
在您的模块中,您需要使用
@NgModule({
providers: [{provide: APP_BASE_HREF, useValue: window['base-url]}]
})