admin管理员组文章数量:1346672
if function returns error, further code is no longer executing. I need to retry this function until success. How can I do it?
... // API request...
function(error, something) {
if (!error) {
something = true;
// Etc...
}
else {
// Code to try again.
}
}
if function returns error, further code is no longer executing. I need to retry this function until success. How can I do it?
... // API request...
function(error, something) {
if (!error) {
something = true;
// Etc...
}
else {
// Code to try again.
}
}
Share
Improve this question
edited Sep 27, 2015 at 9:43
Arnas A.
asked Sep 27, 2015 at 9:38
Arnas A.Arnas A.
611 gold badge1 silver badge7 bronze badges
2 Answers
Reset to default 6I prefer having a function calling it self so you have more freedom
function repeat() {
repeat()
}
Then you can all kind of tings. Your example would be
const repeat = () => {
// Your code
if(error) {
repeat()
}
}
If you only run it once, then make a self executing function.
(function repeat() {
// Your code
if(error) {
repeat()
}
})()
Because we use a function calling it self we can use setTimeout
(function repeat() {
// Your code
if(error) {
setTimeout(() => {
repeat()
}, 100)
}
})()
This makes it possible for the code to have a little break insted of running none stop.
Try this
do {
// do your stuff here
}while(error)
For tour case you can do it like this :
function(error, something) {
do {
// do your stuff here
}while(error)
}
To do what you want until the error bee false
Or you can use while
function(error, something) {
if(!error){
// this code is executed once
}
while(error){
// do your stuff here
}
}
It will test the error before executing the first time
For more example take a look here
For the last ment you can do it like this (without loop) :
function Test(error, something) {
if(!error){
// your code that you want to execute it once
}
else {
// do stuff
Test(error, something); // re-call the function to test the if
}
}
本文标签: javascriptJS try again if errorStack Overflow
版权声明:本文标题:javascript - JS try again if error - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743827904a2545983.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论