2017-09-20 157 views
0

爲什麼我無法從此Web服務獲得響應?爲什麼我無法從此Web服務獲得響應?

$(document).ready(function() { 
    $.ajax({ 
     url: "https://aip-rest.appspot.com/api/token/12416689" 
    }).then(function(data) { 
     $('.greeting-id').append(data.id); 
     $('.greeting-content').append(data.content); 
    }); 
}); 

我測試了與http://rest-service.guides.spring.io/greeting相同的代碼,它的工作。

+0

看來,在HTTPS的響應://aip-rest.appspot.com/api/token/12416689沒有「id」或「content」,對吧? – Pang

回答

0

Web服務https://aip-rest.appspot.com/api/token/12416689是給你一個XML響應,所以你必須要指出的Ajax調用...

$.ajax({ 
    type: "GET", 
    url: "https://aip-rest.appspot.com/api/token/12416689", 
    cache: false, 
    dataType: "xml", 
    success: function(xmlData) { 
     // Fetch your $(xmlData) to extract what you need 
    } 
}); 

我希望它能幫助

相關問題