Angular 4/5/6 Global Variables

前端 未结 4 1876
孤城傲影
孤城傲影 2020-11-27 10:43

I really struggle with creating global variables in my Angular 2 application.

I already googled and read many posts on StackOverflow on this for the last 3 hours, h

4条回答
  •  难免孤独
    2020-11-27 11:17

    Not really recommended but none of the other answers are really global variables. For a truly global variable you could do this.

    Index.html

    
      
      
    
    

    Component or anything else in Angular

    ..near the top right after imports:

    declare const myTest: any;
    

    ...later:

    console.warn(myTest); // outputs '1'
    

提交回复
热议问题