jQuery:没有从联盟服务获得JSON响应

时间:2013-08-02 00:23:45

标签: jquery json

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

0 个答案:

没有答案