AngularJS 常见错误

一、指定$scope绑定名称写错

angular.js:13642 Error: [$injector:unpr] http://errors.angularjs.org/1.5.6/$injector/unpr?p0=<div class="panel-body ng-scope" ng-view="">opeProvider%20%3C-%20%24sope%20%3C-%20AboutController
    at Error (native)
    at http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:6:412
    at http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:43:84
    at Object.d [as get] (http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:40:344)
    at http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:43:146
    at d (http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:40:344)
    at e (http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:41:78)
    at Object.instantiate (http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:41:445)
    at http://localhost:51706/Scripts/angularjs-1.5.6/angular.min.js:90:3
    at Object.link (http://localhost:51706/Scripts/angularjs-1.5.6/angular-route.min.js:7:274)


二、没有引用Controller.js

错误描述:Error: [ng:areq] http://errors.angularjs.org/1.4.8/ng/areq?p0=HelloCtrl&p1=not%20a%20function%2C%20got%20undefined
    at Error (native)
    at http://localhost:8080/web/rs/angular.min.js:1:503
    at qb (http://localhost:8080/web/rs/angular.min.js:1:8403)
    at Qa (http://localhost:8080/web/rs/angular.min.js:1:8490)
    at http://localhost:8080/web/rs/angular.min.js:1:38051
    at w (http://localhost:8080/web/rs/angular.min.js:1:27806)
    at D (http://localhost:8080/web/rs/angular.min.js:1:28162)
    at g (http://localhost:8080/web/rs/angular.min.js:1:25189)
    at g (http://localhost:8080/web/rs/angular.min.js:1:25206)
    at http://localhost:8080/web/rs/angular.min.js:1:24829
Angular出现这种错误的原因,是由于没有在页面中使用模块引入controller导致的

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...