以下文件“有效”(它不会引发任何错误):
<!doctype html>
<html ng-app="modx">
<script src="http://code.angularjs.org/angular-1.0.0rc7.js"></script>
<script>
angular.module("modx", [], function($routeProvider) {
});
</script>
</html>
但是这个
<!doctype html>
<html ng-app="modx">
<script src="http://code.angularjs.org/angular-1.0.0rc7.js"></script>
<script>
angular.module("modx", [], function($routeProvider, $rootScope) {
});
</script>
</html>
给出错误:
错误:未知提供程序:modx
源文件中的$ rootScope :http
://code.angularjs.org/angular-1.0.0rc7.js行:2491
WTF?
114
+1为WTF作为底线。
—
伊莱兰·马尔卡