我正在阅读有关使用$rootScope
在所有应用程序中共享某些数据的讨论。
有些人说这是一种不好的做法,我们应该使用自己的服务来存储这类数据。
虽然我愿意同意,但我有一个问题:不是$rootScope
AngularJS的本地服务吗?我什么时候应该使用$rootScope
?
答案 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的全局命名空间一样糟糕。