我有以下代码:
$(document).ready(function() {
$.ajax({
type: "GET",
url: "http://www.example.com/rest/api.php?request=users",
dataType: "json",
}).then(function(data) {
$('.greeting-id').append(data);
//$('.greeting-content').append(data.content);
});
});
但是看不到任何数据。 当我在浏览器中复制粘贴web服务的URL时,它工作正常。任何想法?