const fetch = require('node-fetch'); fetch('https://api.github.com/users/github') .then(res => res.json()) .then(json => console.log(json)); ...
確定! 回上一頁