我只是在我的角应用中设置路线。第一个视图List
进行http调用以获取演示文稿列表
function ListController($scope, $http)
{
$scope.error = null;
$scope.presentations = null;
$scope.requesting = true;
$scope.currentTitle = '-1';
$data = {
'type' : 'presentations'
};
$http.post('resources/request.php', $data, {timeout:20000})
.success(function(data, status, headers, config)
{
$scope.requesting = false;
$scope.presentations = data;
})
.error(function(data, status, headers, config)
{
$scope.requesting = false;
log(status + ', data:" ' + data + '"');
}
}
);
}
我的路线是
angular.module('main',[]).
config(function($routeProvider) {
$routeProvider.
when('/', {controller:ListController, templateUrl:'resources/views/list.html'}).
when('/view/:id', {controller:VforumController, templateUrl:'resources/views/vforum.html'}).
otherwise({redirectTo:'/'});
});
我遇到的问题是当我转到#/view/:id
然后再回到/
时,$http
来电再次被调用。我怎样才能这样做它只会在第一次进入应用程序时加载并引用第一次加载的相同数据?
我尝试在angular之外创建一个变量,并将其设置为等于第一次加载的数据。然后,在ListController
基本上做了一个if data is null, do the $http call else set $scope.data = data
但是没有用。列表视图只是空白。 $scope.data
构建了我的列表。
答案 0 :(得分:4)
你想要的是一种服务,角度是单身:
.factory( 'myDataService', function ( $http ) {
var promise;
return function ( $data ) {
if ( ! angular.isDefined( promise ) ) {
promise = $http.post('resources/request.php', $data, {timeout:20000});
}
return promise;
}
});
现在您可以通过拨打服务简单地将呼叫替换为$http
:
function ListController( $scope, myDataService )
{
// ...
myDataService( $data ).then( function success( response ) {
$scope.requesting = false;
$scope.presentations = response.data;
}, function error( response ) {
$scope.requesting = false;
log(status + ', data:" ' + response.data + '"');
});
}