我有一個調用API的HTML頁面,但每次我嘗試運行時,我都會收到[object Error]
。jQuery ajax返回[對象錯誤]
這裏是我的代碼:
jQuery.support.cors = true;
jQuery.ajax({
type: "POST",
url: "https://xxxx:8440/ora/authenticationService/authentication/signIn",
contentType: "application/json",
dataType: "json",
data: "{'requestParameters':{'username':'xxxx', 'password':'xxxx'}}",
success: function (data, status, jqXHR) {
alert('exito!');
},
error: function(jqXHR, status, errorThrown) {
alert("Falla : " + errorThrown);
}
});
關於此錯誤的任何想法?
在此代碼中發生錯誤的位置? –
alert()命令簡單地在傳遞給它的任何東西上調用toString(),因此您可以看到錯誤對象的字符串表示形式。嘗試使用'console.log(errorThrown)'而不是'alert(errorTHrown)',您可以在控制檯中看到比通過提示提示更多的信息。 –