Since our API response is a JSON string, the one we want to use is the json() : fetch(url) .then(res => res.json()) .then(data => { // code ...
確定! 回上一頁