In this angular project, I get this error
"Object #<Object> has no method 'always'"
when i run this post:
var http = $injector.get('$http');
http.post(error_url, data)
.success(handleAPIResponse)
.error(handleAPIResponse)
.always(
function () {
source
share