为什么我无法从此网络服务获得响应?
$(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 :(得分: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
}
});
我希望它有所帮助