AngularJS 模块中的run方法

2021-06-19 06:05

阅读:300

标签: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

上一篇:day-12- 前端 html

下一篇:day12-html(css)


评论


亲,登录后才可以留言!