Error: [$injector:unpr] ,错误
- Angular项目报错:Error: [$injector:unpr] http://errors.angularjs.org/1.5.3/$injector/unpr?
- 这类错误一般是方法注入时错误,检查其它模块中是否注入了index.js里没有创建的方法,如下的aaaa方法
//如名为'myPage'页的脚本使用了‘aaaa’方法
app.controller("myPage", function ($scope,aaaa,....
- 而在index.js中并没有这个aaaa方法(或者已经注释掉)
app.factory("cccc", function ($rootScope, $http,.....
仔细检查是否有方法名书写不一致,代码格式,版本覆盖等等错误