Where to save global settings in Angular 4

后端 未结 4 2246
被撕碎了的回忆
被撕碎了的回忆 2021-02-19 05:45

In Angular (Type Script) there are many config files. Which is the right one to save a global setting?

For example, when I am calling API from local then my rootUr

相关标签:
4条回答
  • 2021-02-19 06:10

    When I first started using Angular 2, I used a global.ts file where I'd put all my variables, so that I could change it easily.

    I've then discovered the environments provided by angular CLI. All you have to do is name a file environment.prod.ts (for prod), and use ng build --prod when you build it. when you develop, use the environment.ts file and both files have to have the same variables.

    I hope this answers your question.

    0 讨论(0)
  • 2021-02-19 06:19

    This answer is similar to @trichetriche, with few more details on the code.

    For development/testing purpose

    environment.ts

    export const environment = {
      production: false,
      appUrl: 'localhost:4200'
    };
    

    For production

    environment.prod.ts

    export const environment = {
          production: true,
          appUrl: 'mywebsite.com'
        };
    

    Usage

    service.ts

    import { environment } from '../../environments/environment';
    
    this._http.get(environment.appUrl, requestHeaders(options));
    

    Make a note of production parameter in all the environment files. I believe you could also create more environments like environment.unittesting.ts.

    0 讨论(0)
  • 2021-02-19 06:25

    I have another way to define global settings. Because if we defined in ts file, if build in production mode it is not easy to find constants to change value.

    export class SettingService  {
    
      constructor(private http: HttpClient) {
    
      }
    
      public getJSON(file): Observable<any> {
          return this.http.get("./assets/configs/" + file + ".json");
      }
      public getSetting(){
          // use setting here
      }
    }
    

    In app folder, i add folder configs/setting.json

    Content in setting.json

    {
        "baseUrl": "http://localhost:52555"
    }
    

    In app module add APP_INITIALIZER

     {
          provide: APP_INITIALIZER,
          useFactory: (setting: SettingService) => function() {return setting.getSetting()},
          deps: [SettingService],
          multi: true
        }
    

    with this way, I can change value in json file easier.

    I applied this in project for baseUrl, dateformat, sessiontimeout...

    0 讨论(0)
  • 2021-02-19 06:29

    You can use process.env with webpack quite easily. E.g.

    /**
     * This interface makes sure we don't miss adding a property to both `prod` and `test`
     */
    interface Config {
      someItem: string;
    }
    
    /**
     * We only export a single thing. The config.
     */
    export let config: Config;
    
    /**
     * `process.env.NODE_ENV` definition is driven from webpack
     *
     * The whole `else` block will be removed in the emitted JavaScript
     *  for a production build
     */
    if (process.env.NODE_ENV === 'production') {
      config = {
        someItem: 'prod'
      }
      console.log('Running in prod');
    } else {
      config = {
        someItem: 'test'
      }
      console.log('Running in test');
    }
    

    and you can change process.env.NODE_ENV using webpack -p --define process.env.NODE_ENV='\"production\"' --config ./src/webpack.config.js

    More

    https://basarat.gitbooks.io/typescript/docs/tips/build-toggles.html

    0 讨论(0)
提交回复
热议问题