Я разрабатываю скрипт для личных нужд.Мне нужно повторить попытку, если ошибка вернулась, но я не знаю, как ее исправить.как ее решить?
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: Вы можете выдавать только функцию, обещание, генератор, массив или объект, носледующий объект был передан: "[объект Объект]"