angular.js - angular 模块的run方法如何使用

浏览:39日期:2023-01-16

问题描述

求解决:

<!DOCTYPE html><html><head><meta charset='utf-8'><script src='http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js'></script> </head><body> <p ng-app='myApp'>{{test}}</p> <script>var app = angular.module('myApp', []);console.log(app);app.run(function($rootscope){$rootscope.test = ’hello test’}); </script></body></html>

报错:angular.js - angular 模块的run方法如何使用

问题解答

回答1:

$rootscope --> $rootScope. 你拼错了。。。

回答2:

你的$rootScope的大小写错了,所以导致报错,并不是run方法的问题

相关文章: