iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 26
1

昨天也沒能解決跨domain的問題,
今天就用之前六角舉辦的精神時光屋,
提供的API來練習看看get

當時提供了三個方法為get的API,
分別是報名人數、標籤列表、作品列表

//創建一個 XMLHttpRequest Object
var xhttp = new XMLHttpRequest();    

// 處裡回傳回來的資料
xhttp.onreadystatechange = function() {
  if (this.readyState == 4 && this.status == 200) {
    console.log(xhttp.responseText); // get the response data as a string

  } else {
    console.log(this.status);
    console.log(this.readyState);
  }
}
// send a request to a server
xhttp.open('GET', 'https://www.thef2e.com/api/signUpTotal', true);
xhttp.send(); 

console.log的結果是{"success":true,"total":1383}
必須將其轉換成JSON的格式才能使用:

var result = JSON.parse(xhttp.responseText)
console.log(result.total); // 1383

就得到了報名人數!


上一篇
[25] IDKJS - AJAX - 嘗試解決AJAX跨domain
下一篇
[27] AJAX - 實作POST
系列文
我在繡房繡小主常服的日子-- 初入前端工程師的第一個小挑戰30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言