angularjs中的run()方法使用
Posted 熊熊之火
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs中的run()方法使用相关的知识,希望对你有一定的参考价值。
run方法用于初始化全局的数据,仅对全局作用域起作用。
举个栗子吧:
<script type="text/javascript">
var m1 = angular.module(‘myApp‘,[]);
m1.run([‘$rootScope‘,function($rootScope){
$rootScope.name = ‘hello‘;
}]);
console.log( m1 );
</script>
以上是关于angularjs中的run()方法使用的主要内容,如果未能解决你的问题,请参考以下文章
IFrame 中的 AngularJS run() 方法不会在 iframe 重新加载时重新运行