如果资源请求错误,我们如何使用XMLHttpRequest函数处理程序?

时间:2016-02-05 09:43:32

标签: javascript jquery angularjs xmlhttprequest

在我们在$ http.get('')。然后(onpass,onfail)方法中提供错误网址的角度js中,我们只是得到错误消息,它不会在控制台中显示任何错误消息。

示例

$http.get('path').then(onpass, onerror);

var onpass = function(request){$scope.data = request.data };
var onerror = function(request){$scope.error= "error" };

只是想知道我们如何使用相同的功能XMLHttpRequest。如果你只给我一个例子,那就太棒了。我使用相同的

xhttp = new XMLHttpRequest();
xhttp.open('POST', service + url, false);
xhttp.setRequestHeader("Accept", "application/json");
xhttp.setRequestHeader("Content-Type", "application/json");
xhttp.setRequestHeader("APIKey", apiKey);
xhttp.onreadystatechange = function () {
    if (xhttp.readyState == 4 && xhttp.status == 200) {
        var data = xhttp.responseText;
       // console.log(data);
    }
}
var payload = "{'xyz':{'abc':'" + test+ "', 'test':'" + test+ "'}}";
xhttp.send(payload);

由于

1 个答案:

答案 0 :(得分:0)

您只需检查readyState和status的其他组合(0 / /通常是安全问题,4 /是all sorts of different things)。