在这个有角度的项目中,我收到了这个错误
"Object #<Object> has no method 'always'"
当我尝试运行这篇文章时:
var http = $injector.get('$http');
http.post(error_url, data)
.success(handleAPIResponse)
.error(handleAPIResponse)
.always(
function () {
答案 0 :(得分:9)
使用finally
代替。这在版本1.2.0中已更改