1
我需要幫助我的應用程序。我試圖每5秒刷新一次功能。控制檯顯示「TypeError:fn不是函數」。這是我的代碼:離子間隔錯誤 - TypeError:fn不是函數
$scope.getItems = function(){
$http.get('http://example.com/script.php')
.success(function(res){
$scope.news = res;
})
.error(function(data, status) {
console.log("Error");
})
.finally(function(){
$scope.$broadcast('scroll.refreshComplete');
});
}
$scope.getItems();
$interval($scope.getItems(), 5000);
我在寫這個答案,但你快:)這是解決方案,這將適用於確保 –
:d遺憾的是,並不意味着在這裏「偷」的答案! :) – OClyde
沒問題:)所有重要的是幫助 –