Advertisement
kknndd_

Untitled

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