AngularJS JSONP语法错误:意外的令牌:

时间:2015-01-08 19:26:33

标签: javascript json angularjs jsonp

我正在尝试使用WordsAPI,每次尝试使用jsnop和Angular访问它时都会收到此错误:

enter image description here

我使用的代码如下:

  $scope.searchWord = function() {
var url = 'https://www.wordsapi.com/words/'+$scope.word+'/definitions?callback=JSON_CALLBACK&accessToken=ACCESS_TOKEN';
$http.jsonp(url).
success(function(data, status, headers, config) {
  $scope.meanings = data;
  console.log($scope.meanings)
}).error(function(data, status, headers, config) {
  console.log(data);
});

}

所以它应该是这样的: https://www.wordsapi.com/words/word/definitions?callback=JSON_CALLBACK&accessToken=ACCESS_TOKEN

我在JSON验证器上测试了这个链接,从服务器获取的JSON一切正常。 我在Mac上使用Chrome。

有人有任何想法吗?

0 个答案:

没有答案