gpt4 book ai didi

angularjs - 与 Angular 中的 $timeout 相比,$interval 返回的 promise 如何工作的困惑

转载 作者:行者123 更新时间:2023-12-01 07:38:10 26 4
gpt4 key购买 nike

我在理解 $interval 返回的 promise 如何在 Angular 中工作时遇到问题。

假设在下面的示例中,我们有一个简单的“api”工厂,其中包含一个名为“getStuff”的方法,该方法返回一个包含一个项目的数组。我们还有一个 Controller ,该 Controller 在该工厂上调用 $timeout:

angular.module("app",[])
.factory('api', function(){
return {
getStuff: function() {
return ["stuff"];
}
};
})
.controller('appCtrl', function($scope, $timeout, api){
$timeout(api.getStuff, 1000)
.then(function(response){
console.log(response);
});
})

这将在 1 秒后在控制台中记录 '["stuff"]',这很好。

所以假设我想通过用 $interval 替换 $timeout 每秒调用该方法。现在什么都没有发生:
angular.module("app",[])
.factory('api', function(){
return {
getStuff: function() {
return ["stuff"];
}
};
})
.controller('appCtrl', function($scope, $interval, api){
$interval(api.getStuff, 1000)
.then(function(response){
console.log(response);
});
})

在这种情况下,$timeout 和 $interval 有什么不同?

我感谢所有帮助!

最佳答案

将计数值添加到 DIMM Reaper 在对 Christophe L 的回答的评论中提供的示例中:

var app = angular.module("app", []);

app.run(function ($interval) {
console.log('This fiddle will self destruct...');

var timer = $interval(function (count) {
console.log('tick... ' + count);
}, 500, 4, false);

timer.then(function(res) {
console.log("BOOM! " + res);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.8/angular.min.js"></script>

<body ng-app="app">
</body>


输出:
This fiddle will self destruct...
tick... 1
tick... 2
tick... 3
tick... 4
BOOM! 4

最后的结果是最终的计数。

关于angularjs - 与 Angular 中的 $timeout 相比,$interval 返回的 promise 如何工作的困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25100585/

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