未捕获的SyntaxError:意外的令牌:在AngularJS中

我已经在这个工作了几个小时,似乎无法到达任何地方.我希望这是发布此内容的正确位置.我是StackOverflow的新手,所以如果这不正确,请引导我到正确的地方.

我有以下html文件

<!DOCTYPE HTML>
<html ng-app="dishClips">
 <head>
    <script type="text/javascript" src="http://code.angularjs.org/angular-1.0.0.0rc4.min.js"></script>
    <script type="text/javascript" src="http://code.angularjs.org/angular-resource-1.0.0.0rc4.min.js"></script>
    <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.0/css/bootstrap.min.css">
    <script type="text/javascript" src="./dishclips.js"></script>
 </head>

 <body>
 <div ng-controller="dishClipsCtrl">
    <table class="table table-striped">
        <tr ng-repeat="restaurant in dishclipsResult.results"></tr>
            <td>{{restaurant.name}}</td>
    </table>
 </div>
 </body>
</html>

以下是我的dishclips.js:

angular.module('dishClips',['ngResource']);

function dishClipsCtrl($scope,$resource) {
    $scope.dishclips = $resource('http://apiv2.dishclips.com/dishclips/api/:action',{action:'searchRestaurants',address:'irvine',callback:'JSON_CALLBACK' },{get:{method:'JSONP'}});

    $scope.dishclipsResult = $scope.dishclips.get(); 
}

当我运行它(在chrome中)时,我得到:

未捕获的SyntaxError:意外的令牌:

json回归看起来很棒所以我不明白为什么这是一个问题.

谢谢

解决方法

因为您使用的API返回JSON而不是 JSONP.JSONP的有效负载应该包含一个函数,如functionCall({“Name”:“Foo”,“Id”:1234,“Rank”:7});

相关文章

ANGULAR.JS:NG-SELECTANDNG-OPTIONSPS:其实看英文文档比看中...
AngularJS中使用Chart.js制折线图与饼图实例  Chart.js 是...
IE浏览器兼容性后续前言 继续尝试解决IE浏览器兼容性问题,...
Angular实现下拉菜单多选写这篇文章时,引用文章地址如下:h...
在AngularJS应用中集成科大讯飞语音输入功能前言 根据项目...
Angular数据更新不及时问题探讨前言 在修复控制角标正确变...