使用带有angular-cli项目的webpack 2 DefinePlugin

时间:2016-10-14 05:43:01

标签: angular webpack angular-cli webpack-2

我正在尝试将带有webpack2项目的angular2转换为基于angular-cli的项目。

如果我理解正确,angular-cli现在支持webpack。在我的原始项目中,我注入了以下app.config.js

module.exports =  {
    webServer: {
        appBaseHref : JSON.stringify("/")
    },
    auth0: {
        apiKey: JSON.stringify("API_KEY"),
        domain: JSON.stringify("DOMAIN.auth0.com"),
        callbackUrl: JSON.stringify("CALLBACK_URL")
    }
};

将以下内容添加到webpack.config.js文件中:

const appConfig = require("./config/app.config");
const DefinePlugin = require("webpack/lib/DefinePlugin");
...
module.exports = {
    plugins: [
       new DefinePlugin({
           APP_CONFIG: appConfig
       }),
...

然后在我的打字稿项目中,我会用declare var APP_CONFIG:any;声明APP_CONFIG然后我会使用它的属性。如何在angular-cli项目中注入这样的对象?

感谢

1 个答案:

答案 0 :(得分:2)

以下是使用setget方法的普通服务的简单示例:

import {Injectable} from '@angular/core';

@Injectable()

export class AppConfigService {

  public config: any = {
    apiKey: '[api_key]',
    domain: '[domain]',
    callbackUrl: '[callbackUrl]'
  }

  constructor() {}

  /* Allows you to update any of the values dynamically */
  set(k: string, v: any): void {
    this.config[k] = v;
  }

  /* Returns the entire config object or just one value if key is provided */
  get(k: string): any {
    return k ? this.config[k] : this.config;
  }
}

对于更复杂的用例,您可能希望将其转换为observable,但我不认为在这种简单的情况下这是必要的。