AngularJS不同-2控制器之间的通信

时间:2015-11-18 06:41:10

标签: angularjs

我有2个控制器ConfigurationController.jsCartController.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.

1 个答案:

答案 0 :(得分:1)

在angularJS中,这是你可以在controller.js之间传递值的方式。

Othen than that you can use any StateServer technique, if data is growing in any size.

$scope$rootscope都会带有相同的记忆,只是沟通方式不同。