我正在尝试以角度导出一个常量,我需要设置一个键,其值将从服务返回。我尝试使用以下代码:
这是我的 user-config.ts 文件:
export const USER_CONFIG = {
username: new UserService().getUsername()
}
这是我想要注入的 UserService 文件:
export class UserService{
constructor(someOtherService: SomeOtherService)
getUsername() {
return this.someOtherService.getDetails('some/url')
}
}
我无法解决这个问题。需要帮忙。