昨天也沒能解決跨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
就得到了報名人數!