我什么时候应该使用$ rootScope?

时间:2014-03-13 17:26:18

标签: angularjs

我正在阅读有关使用$rootScope在所有应用程序中共享某些数据的讨论。

http://www.linkedin.com/groups/Using-rootScope-store-data-5010991.S.5848794319187644420?view=&srchtype=discussedNews&gid=5010991&item=5848794319187644420&type=member&trk=eml-anet_dig-b_pd-ttl-cn&fromEmail=&ut=36igDbZcDcIC81

有些人说这是一种不好的做法,我们应该使用自己的服务来存储这类数据。

虽然我愿意同意,但我有一个问题:不是$rootScope AngularJS的本地服务吗?我什么时候应该使用$rootScope

1 个答案:

答案 0 :(得分:2)

我同意Kibsaim在上述帖子中的评论:

Hello Carla, 

I will recommend not overloading rootScope, although what you comment can be done, I will       
recommend you using a service with state, and inject it over controllers to share the   
information. 

That should be cleaner on the long run.

将对象放在$rootScope中从长远来看是不好的,就像污染Javascript的全局命名空间一样糟糕。