我有以下JS代碼來獲取來自URL的響應。我的網址沒問題,我收到了我想要顯示的回覆,但我不知道如何以JSON格式顯示回覆。我會感謝任何幫助。從URL
var id = '84337255-f472-4630-986d-487f22009536';
var startDate = '2017-01-01';
var endDate = '2017-03-30';
var url = 'http://34.209.24.195/facturas\?id\=' + id + '\&start\=' + startDate + '\&finish\=' + endDate;
var urlRequestTimeout = setTimeout(function() {
console.log("Failed to load resources");
}, 8000);
$.ajax({
url: url,
dataType: "json",
method: "GET",
success : function(response) {
console.log(response);
clearTimeout(urlRequestTimeout);
}
});
你已經使用'console.log'在瀏覽器控制檯中打印JSON。你想在DOM中顯示結果嗎? – Nisarg