07.05.2022, 11:46
Hi, wie muss ich den die fetch Funktion verändern, um 3 URLS zu fetchen und am Ende alle results in einem then zu haben?
Habe dieses Bsp. gefunden.
Code:
fetch(php_function, {
method: 'post',
body: params
}).then(res => {
return res.text();
}).then(res => {
output = res;
output = JSON.parse(output);
Habe dieses Bsp. gefunden.
Code:
Promise.all([php_function, text.csv,url, 3].map(id =>
fetch(`https://jsonplaceholder.typicode.com/todos/${id}`).then(resp => resp.json())
)).then(console.log);