我有2个控制器ConfigurationController.js
和CartController.js
。我想将configuration
数据传递给cart
。
我尝试使用以下内容: -
$ rootScope.value1 =' ---';
$ rootScope.value2 =' ---';
$ rootScope.value3 =' ---';
依此类推...............
但它会增加浏览器内存中$rootScope
的大小,即使是前后我们也必须管理$rootScope
值。
Is any other way in AngularJS that I can handle same situation in better way.
答案 0 :(得分:1)
在angularJS中,这是你可以在controller.js之间传递值的方式。
Othen than that you can use any StateServer technique, if data is growing in any size.
但$scope
或$rootscope
都会带有相同的记忆,只是沟通方式不同。