获取Json数据时出现意外的标记':'

时间:2016-09-26 22:32:50

标签: json

This link获取一些随机的JSON数据。据我所知,它是有效的。

但是,当我尝试使用此代码时:

$.ajax({
               type: "GET",
               url: "https://getquote.herokuapp.com/get",
               dataType: "jsonp",
               success: function(data){
                  console.log("getting data...")
                  console.log(data);
               },
               error: function(err){
                  console.log("ran into an error...");
               }
            });

...我收到一条错误,上面写着“意外的令牌:”

0 个答案:

没有答案