Client - 用Fetch跟Server要資料
fetch('https://api.github.com/users/任意帳號')
.then(function(res) {
return res.json();
}).then(function(json){
console.log(json);
});Last updated
fetch('https://api.github.com/users/任意帳號')
.then(function(res) {
return res.json();
}).then(function(json){
console.log(json);
});Last updated