jQuery AJAX语法错误,意外令牌:':'

时间:2018-04-07 16:23:10

标签: javascript jquery ajax

尝试对API进行第一次AJAX调用。运行时,Firefox的控制台会返回SyntaxError: unexpected token: ':',其中包含指向MDN docs about missing a semi-colon的链接。

$.ajax({
  type: "GET",
  url: "url/to/API/here",
  dataType: "jsonp",
  jsonp: "callback",
  success: function(data){
    console.log(data.quoteText);
  },
  xhrFields: {
    withCredentials: false
  }
})

在我尝试使用JSON而不是JSONP之后遇到了一些其他类似的问题,但是返回了一个CORS错误(特别是CORS header 'Access-Control-Allow-Origin' missing)也尝试使用CrossOrigin无效。

0 个答案:

没有答案