Angular 4/5/6 Global Variables

前端 未结 4 1882
孤城傲影
孤城傲影 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:26

    You can use the Window object and access it everwhere. example window.defaultTitle = "my title"; then you can access window.defaultTitle without importing anything.

提交回复
热议问题