'http://ya.ru?q=1',
'http://ya.ru?q=2',
'http://ya.ru?q=3',
'http://ya.ru?q=4',
'http://ya.ru?q=5',
];
function makeRequest(url){
return axios.get(url);
}
function cutRandomElement(items){
let index = Math.floor(Math.random() * items.length);
return items.splice(index,1);
}
async function main(){
while(URLS.length > 0){
try{
let respose = await makeRequest(cutRandomElement(URLS));
} catch(err){
/* handle errors */
}
}
}
Типо такого ?
Обсуждают сегодня