最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - JS try again if error - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 6

I 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
        }
    }
发布评论

评论列表(0)

  1. 暂无评论