gpt4 book ai didi

javascript - 与 Angular 同步事件(如线程 'join()' 函数)

转载 作者:行者123 更新时间:2023-12-02 15:56:13 24 4
gpt4 key购买 nike

我寻找一些简单的东西,例如用于线程但用于 Angular join()

在我的 Controller 中:

vehiclesService.getVehicles().then(function(sth){
$scope.vehicles = sth.data;
$scope.isend();//this call suck in my mind
});
vehiclesService.getFitment().then(function(sth){
$scope.fitment = sth.data;
$scope.isend();//this call suck in my mind
});
vehiclesService.getTagsList().then(function(sth){
$scope.tags = sth.data;
$scope.isend();//this call suck in my mind
});

我想要在所有 3 个变量都初始化时调用函数。目前的工作。但我心里却很难过。我也试试

$scope.$watch('vehicles', function() {
$scope.isend();
});

$scope.$watch('fitment', function() {
$scope.isend();
});

$scope.$watch('tags', function() {
$scope.isend();
});

$scope.isend = function(){
if($scope.vehicles !== undefined && $scope.fitment !== undefined && $scope.tags !== undefined)
alert('doSomething');
}

它可以工作,但我发现它更糟糕!

在 Angular 中这样做的好方法是什么?

最佳答案

使用$q.all - 当所有的 promise 都得到解决时,返回的 promise 也得到解决。

$q.all([
vehiclesService.getVehicles(),
vehiclesService.getFitment(),
vehiclesService.getTagsList()
]).then(function(results) {
// results is an array
$scope.isend();
});

关于javascript - 与 Angular 同步事件(如线程 'join()' 函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31537122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com