2017-07-24 74 views
0

林當前正在玩弄取得和想知道如何我可以使回調更清潔,但仍然使用箭頭功能。例如,我想對成功進行循環。我應該使用什麼語法?Javascript抓取。如何處理結果

代碼

fetch(url).then(res => res.json()) 
    .then(data => console.log(data.items)) 
    .catch(e => console.log('error')) 

回答

2

沒有太多的事情可做比使用一對夫婦的大括號,並以通常的方式遍歷

fetch(url).then(res => res.json()) 
      .then(data => { 
      for (const item of data.items) { 
       // stuff 
      } 
      }) 
      .catch(e => console.log('error')) 

你當然可以把在一個函數並調用功能,而如果這讓你更快樂。

+0

謝謝!這正是我期待的。 – user2952238

+0

不客氣! – adeneo