如何在 Angular 中使用 $rootScope 来存储变量?

如何在 Angular 中使用 $rootScope 来存储变量?,第1张

我如何使用$rootScope变量存储在我想稍后在另一个控制器中访问的控制器中?例如:

angular.module('myApp').controller('myCtrl', function($scope) {  var a = //something in the scope  //put it in the root scope});angular.module('myApp').controller('myCtrl2', function($scope) {  var b = //get var a from root scope somehow  //use var b});

我该怎么做?

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/read/1369970.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-15
下一篇 2022-06-15

发表评论

登录后才能评论
保存