相同的网址在浏览器上工作正常。我试过了,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);
}
});
});