我真的很沮丧,我知道这一定是我犯的一个简单的错误。所以,我试图从我在 Behance 上的帐户中获取一些图像,并将它们显示在我自己的网站上。我正在使用 AngularJS。使用以下代码,我可以得到响应:
'use strict';
angular.module('angularApp')
.controller('BehanceCtrl', function ($scope, $resource) {
$scope.behance = $resource('http://www.behance.net/v2/users/zachjanice/projects?client_id=xxxxxxxxxx',
{ q:'', callback: 'JSON_CALLBACK'},
{get:{method:'JSONP'}}
);
$scope.behanceResult = $scope.behance.get();
});
在 Chrome 开发人员工具中显示我收到了回复。
angular.callbacks._0({"projects":[{"id":123456, etc. etc.}] })
我的 HTML 文件显示:
<section ng-controller="BehanceCtrl">
<div class="container">
<div class="row">
<ul>
<li ng-repeat="behance in behanceResult.results">
<img ng-src="{{projects.covers}}">
<h1>{{projects.id.name}}</h1>
</li>
</ul>
</div>
</div>
</section>
我遗漏了什么?以及如何显示这些图像的图像和标题。
任何帮助表示赞赏。