Angular 2 - Whats the best way to store global variables like authentication token so all classes have access to them?

后端 未结 4 705
后悔当初
后悔当初 2020-12-13 14:49

Angular 2 question only:

Whats the best way to store global variables like authentication token or base url (environment settings) so that all classes can have acces

4条回答
  •  执念已碎
    2020-12-13 15:39

    Well to create really global scope data you should register your class\object\value during the app bootstrapping as dependency parameter to the bootstrap function

    bootstrap(MyApp,[MyGlobalService]);

    This will register your service MyGlobalService (infact it can be a object or factory function or your own provider) at the root level. This dependency now can be injected into any component.

    Unlike Angular1 there are multiple Injectors available for an Angular2 app, with one-to-one mapping between components and injectors. Each component has its own injector.

    The Angular developer guide has some good example of such registrations. See the guide on Dependency Injection.

    The other option has already been highlighted by @Yaniv.

提交回复
热议问题