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相同的代碼,它的工作。
看來,在HTTPS的響應://aip-rest.appspot.com/api/token/12416689沒有「id」或「content」,對吧? – Pang