在我们在$ 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);
由于