作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为一些现有的(并且不受我控制的)身份验证库(例如 keycloak-angular )构建一个包装库“auth-lib”。
我包装的身份验证库需要在应用程序初始化或引导过程中使用配置参数进行初始化图书馆。
如何通过我的包装库将配置参数从我的示例应用程序传递到身份验证库?
最佳答案
您可以使用 forRoot
从 App.Module 传递配置到您的图书馆模块。
试试这样:
App.module.ts
imports: [
BrowserModule,
AuthLibModule.forRoot({
configuration: {configA : "abc", configB : "xyz"}
})
]
export class AuthLibModule{
static forRoot(configuration): ModuleWithProviders {
console.log(configuration);
return {
ngModule: AuthLibModule,
providers: [AuthLibService,{provide: 'config', useValue: configuration}]
};
}
}
export class AuthLibService{
constructor(@Inject('config') private config:any) {
console.log(config)
}
}
关于angular - 如何将配置参数传递给 Angular 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59484791/
我是一名优秀的程序员,十分优秀!