在AngularJS 1.2rc(x)中使用ngResource,如何获取状态代码?
RestAPI.save({resource},{data},function( response,responseHeaders ) { });
其中RestAPI是我的ngResource。
该响应具有$ promise对象和从服务器返回但不再是状态的资源。如果服务器将状态代码注入到头对象中,那么responseHeaders()函数只有一个状态,而不是真正返回的状态代码。所以一些服务器可能会服务它,有些可能不服务。
您可以使用promiss回调,然后在$资源调用之后最后捕获。
原文链接:https://www.f2er.com/angularjs/144402.html例如。如果您想在通话后遇到错误,您可以执行以下操作:
RestAPI.save({resource},callbackFunction).$promise.catch(function(response) { //this will be fired upon error if(response.status == 500) alert('Something baaad happend'); }).then(function() { //this will be fired upon success });
响应对象将具有状态和statusText属性。状态是一个整数状态代码和statusText文本。您还将具有包含服务器响应的data属性。
编辑:建议,它是response.status