我只是开始学习 angular.js。你们能告诉我正确的方法来制作一个页面,该页面最初显示一个 ajax 加载器元素,上面写着“正在加载数据”或类似的东西。然后在获取数据后,它将更新视图并隐藏元素。我可以使用 jquery 将内容放入页面加载事件中,但是您如何使用纯角度来做到这一点?到目前为止,我想出了如何将其放入点击事件中:
<div ng-app="VideoStatus" ng-controller="VideoStatusCtrl">
<button ng-click="getVideos()">get videos</button>
</div>
<script type="text/javascript">
angular.module('VideoStatus', ['ngResource']).run(function(){
// I guess somehow I can start fetching data from the server here,
// but I don't know how to call Controller methods passing the right scope
});
function VideoStatusCtrl($scope, $resource) {
$scope.videoStatus = $resource('/Videos/GetStatuses', { callback: 'JSON_CALLBACK' });
$scope.getVideos = function () {
$scope.videoResult = $scope.videoStatus.get();
console.log('videos fetched');
};
};
</script>