単一のオブジェクトを返すAPIエンドポイントを呼び出します。オブジェクトに格納されているvideo
という名前の配列をループし、配列に格納されているすべてのリンクをビューに戻したいとします。ng-repeatを使用してオブジェクトに格納された配列を反復処理する方法
JSONオブジェクトは、APIから戻さAPIコールのコントローラで
HTMLコード
<div class="myVideo" ng-repeat="v in courses.video">
<iframe width="560" height="315" ng-src="{{'v.video'}}"
frameborder="10" allowfullscreen></iframe>
</div>
機能
$scope.getCourse = function(id){
coursesFac.getCourseById(id)
.then(function (response) {
$scope.courses = response.data;
var items =response.data;
console.log(items);
//console.log($scope.courses.video);
}, function (error) {
$scope.status = 'Unable to load course data: ' + error.message;
console.log($scope.status);
});
};
ない配列 -
を解析する必要があることはcourses.video' 'であなたの配列が文字列であるように、私もあなたのNGリピート –