gpt4 book ai didi

angularjs - 未捕获的语法错误 : Unexpected token : in AngularJS

转载 作者:行者123 更新时间:2023-12-04 18:43:37 25 4
gpt4 key购买 nike

我已经为此工作了几个小时,但似乎无处可去。我希望这是发布此内容的正确位置。我是 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 中)时,我得到:

未捕获的语法错误:意外标记:

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

谢谢

最佳答案

因为您使用的 API 返回 JSON而不是 JSONP . JSONP的有效载荷应该用这样的函数包裹 functionCall({"Name": "Foo", "Id": 1234, "Rank": 7});

关于angularjs - 未捕获的语法错误 : Unexpected token : in AngularJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19105092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com