显示加载器onload并在加载数据后隐藏它.
$scope.showLoader = true; $http.get('http://www.testurl.com/index.php/site/getprofileLocations').success(function(data){ $scope.showLoader = false; // rest of your code });
编辑:来自赛义德答案的HTML代码