Как я могу повторить попытку? - PullRequest
0 голосов
/ 28 октября 2018

Я разрабатываю скрипт для личных нужд.Мне нужно повторить попытку, если ошибка вернулась, но я не знаю, как ее исправить.как ее решить?

const request = require("request");
const co = require('co');


function init() {
  co(function *(){
    var res = yield GetData();
    console.log(res);
  });
}

function onerror(error) {
  console.log("error below");
  console.log(error);
  console.log(error.code);
  console.error(error.stack);
}

function send_request(options, callback){
  co(function *(){
    let RetryAttemptCount = 0;
    let MaxRetries = 3;

    let res;

    res = yield request(options, function (error, response, body) {
      var tmp;
      if (!body && error && !response) {
        RetryAttemptCount++;
        console.log('increase RetryAttemptCount :',RetryAttemptCount);
        throw new onerror(error);
      } else if (!error) {
        tmp = JSON.parse(body);
        return tmp;
      }
    });
  }).catch(onerror);
}

function GetData() {
  return new Promise(function(resolve, reject){
    var options = { method: 'GET', url: 'https://api.upbit.com/v1/market/all' };

    send_request(options, (res) => {
      resolve(res);
    });
  });
}

init();

Но я получаю следующую ошибку:

TypeError: Вы можете выдавать только функцию, обещание, генератор, массив или объект, носледующий объект был передан: "[объект Объект]"

Ответы [ 2 ]

0 голосов
/ 28 октября 2018

Вы можете сделать это очень просто с помощью простой функции повтора:

async function retry(fn, attempts = 3, delay = 2000) {
   return async function(...args) {
     for(const i = 0; i < attempts; i++) {
       try {
         await fn.call(this, ...args); // delegate
       } catch (e) {
          if(attempts-- > 0) await new Promise(r => setTimeout(r, delay));
          else throw e;
       }
     }
   }
}

Это позволит вам сделать:

let retried = retry(fn);
// ... then later

await retried({ ... params });
0 голосов
/ 28 октября 2018

Я предлагаю вам использовать requestretry npm вместо запроса.Это просто в использовании

var request = require('requestretry');

request({
url: 'https://api.domain.com/v1/a/b',
json: true,

// The below parameters are specific to request-retry
maxAttempts: 5,   // (default) try 5 times
retryDelay: 5000,  // (default) wait for 5s before trying again
retryStrategy: request.RetryStrategies.HTTPOrNetworkError // (default) retry on 5xx or network errors
}, function(err, response, body){
// this callback will only be called when the request succeeded or after maxAttempts or on error
if (response) {
    console.log('The number of request attempts: ' + response.attempts);
}
});

Вы можете контролировать количество повторов, изменяя значение maxAttempts

...