相同的网址在浏览器上正常工作。我试过dataType:jsonp
,但没有运气。错误日志以同一顺序说error, error, <empty>
。
的代码
var url="http://api-product.skimlinks.com/categories?key=hide&format=json";
$(document).ready(function() {
$.ajax({
type:"GET",
dataType: "json",
url: url,
success:function(data){
alert(data);
},
error:function(xhr, textStatus, errorThrown) {
console.log(xhr.statusText);
console.log(textStatus);
console.log(errorThrown);
}
});
});