0
我是新來AngularJs,我需要顯示像CNN通道底部區域新聞頭條新聞提要AngularJS - 頭條新聞顯示像CNN通道底部區域新的飼料
我從CNN的飼料,有它在一個$範圍變量, 我怎麼能顯示每個飼料 - 使其在屏幕上停留10秒 和移出當前之一,在接下來的一個帶,
我不能用「NG重複」,因爲它顯示數組對象中的所有項目; 在我的情況下,我需要一個接一個地顯示。
我嘗試使用自定義向鏈路功能,但無法在//Error line
編譯器來訪問鏈接功能
app.controller('tickerController', function($http, $scope, FeedService) {
function loadNewsFeed() {
FeedService.parseFeed(url).then(function(res) {
$scope.newsFeedObject = res.data.responseData.feed.entries;
});
}
app.directive('currentNews',function() {
return {
restrict: 'E',
link: function (scope, element, attrs) {
element.html(scope.newsFeedObject[0].title); //Error line
}
};
}
內部新聞饋送對象說,「0」無法識別,但能夠訪問此外聯線功能
分享您的代碼 –