在其他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中定义
答案 0 :(得分:1)
在app.module.ts
中,将其设置为提供商:
{ provide: APP_CONFIG, useValue: AppConfig },
在课堂上注入时,
constructor(@Inject(APP_CONFIG) private config: IAppConfig,..){}
您可以将您的值设为config.apiEndpoint