Advertisement
kknndd_

Untitled

May 2nd, 2021
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. responseJSON.articles.forEach(article => {
  2.                      
  3.                         const url = `https://wt.kpi.fei.tuke.sk/api/article/${article.id}`;
  4.  
  5.                         fetch(url)
  6.                             .then(response =>{
  7.                                 if(response.ok){
  8.                                     return response.json();
  9.                                 }else{
  10.                                     return Promise.reject(
  11.                                     new Error(`Server answered with ${response.status}: ${response.statusText}.`));
  12.                                 }
  13.                             })
  14.                             .then(responseJSON => {
  15.  
  16.                                 console.log(responseJSON);
  17.                                 console.log(`article_content : ${responseJSON.content}`);
  18.  
  19.  
  20.                             })
  21.                             .catch (error => {
  22.  
  23.                             });
  24.                      
  25.                     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement