我刚刚尝试将我的角度版本从1.3.0-rc.4
更新为1.3.15
,但我现在在我的网页上看到以下错误:
包含版本信息的文件头:
/**
* @license AngularJS v1.3.15
* (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT
*/
错误:
TypeError: result.headers is not a function↵ at resolvePromiseWithResult
(http://.../js/angular.js:9720:71)↵ at processQueue
(http://.../js/angular.js:13248:27)↵ at
http://.../js/angular.js:13264:27↵ at Scope.$get.Scope.$eval
(http://.../js/angular.js:14466:28)↵ at Scope.$get.Scope.$digest
(http://.../js/angular.js:14282:31)↵ at
http://.../js/angular.js:14505:26↵ at completeOutstandingRequest
(http://.../js/angular.js:4924:10)↵ at
http://.../js/angular.min.js:5312:7
如果我查看结果中存储的数据,我会看到它是Object
,其属性为data
和status
,其中data
包含请求和status
是http状态代码。我知道触发此错误的其中一个请求是进行简单的$http.get(url)
调用。
我是否需要做些什么来支持最新版本?