gpt4 book ai didi

angular - 在 Angular 2 中存储环境变量

转载 作者:行者123 更新时间:2023-12-04 17:59:12 26 4
gpt4 key购买 nike

我目前正在开发基于 angular2-seed 的 Angular 2 应用程序.我正在寻找存储环境变量的最佳方法,以便我可以存储不同的值,例如 API url。

默认配置文件 (seed.config.ts) 已经有 2 个在构建生产或开发时使用的环境:

/**
* The enumeration of available environments.
* @type {Environments}
*/
export const ENVIRONMENTS: Environments = {
DEVELOPMENT: 'dev',
PRODUCTION: 'prod',
STAGING: 'staging'
};

在这个配置文件中,定义了一个 SeedConfig 类,其中定义了一些常量,我想这也是我应该添加变量的地方。这给了我:

export class SeedConfig {

PORT = argv['port'] || 8000;
URL_DEV = 'www.example.com';
URL_PROD = 'www.example.com';

现在,根据配置的环境,在我的模板中访问这些变量的最佳方法是什么?

最佳答案

1)

提供类

bootstrap(AppComponent, [provide('SeedConfig', {useClass: SeedConfig}]);

@Component({
selector: 'app-component',
providers: [provide('SeedConfig', {useClass: SeedConfig}],
...
})

像访问它

@Component({
selector: 'some-component',
template: `<div>{{seedConfig.DEVELOPMENT}}</div>
...
})
export class SomeComponent {
constructor(@Inject('SeedConfig') private seedConfig:any) {}
}

2)

或者获得适当的自动完成

提供类

bootstrap(AppComponent, [SeedConfig]);

@Component({
selector: 'app-component',
providers: [SeedConfig],
...
})

像访问它

@Component({
selector: 'some-component',
template: `<div>{{seedConfig.DEVELOPMENT}}</div>
...
})
export class SomeComponent {
constructor(private seedConfig:SeedConfig) {}
}

第二种方法的优点是自动完成可以列出所有配置的属性,但它也需要在使用它的任何地方导入 SeedConfig

关于angular - 在 Angular 2 中存储环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37569756/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com