码迷,mamicode.com
首页 > Web开发 > 详细

AngularJS 模块中的run方法

时间:2017-07-17 12:28:00      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:console   func   tool   -name   hello   tag   知识   asc   span   

AngularJS中的run方法初始化全局数据,只对全局作用域起作用,如$rootScope.多个控制器之间可以共享数据,如下代码所示:

 

[html] 
 
  1. <script type="text/javascript">    
  2.           var m1 = angular.module(‘myApp‘,[]);  
  3.           m1.run([‘$rootScope‘,function($rootScope){  
  4.           $rootScope.name = ‘hello‘;  
  5.            }]);    
  6.           console.log( m1 );  
  7.     </script>   

AngularJS 模块中的run方法

标签:console   func   tool   -name   hello   tag   知识   asc   span   

原文地址:http://www.cnblogs.com/minghui007/p/7193611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!