如何在ionic2 other ts文件中导入config ts文件

时间:2017-02-24 10:23:27

标签: android ios angular ionic2

在其他ts文件中导入app.config.ts文件,例如/pages/home/home.ts

我在app.config中使用了以下代码

import { OpaqueToken } from "@angular/core";

    export let APP_CONFIG = new OpaqueToken("app.config");

    export interface IAppConfig {
        apiEndpoint: string;
    }

    export const AppConfig: IAppConfig = {    
        apiEndpoint: "http://localhost:15422/api/"    
    };

请帮助我,使用此app.config并在app.module中定义

1 个答案:

答案 0 :(得分:1)

app.module.ts中,将其设置为提供商:

{ provide: APP_CONFIG, useValue: AppConfig },

在课堂上注入时,

constructor(@Inject(APP_CONFIG) private config: IAppConfig,..){}

您可以将您的值设为config.apiEndpoint