MediaWiki:RecentActivities.js:修订间差异
来自东方活动维基
无编辑摘要 |
无编辑摘要 |
||
第1行: | 第1行: | ||
var xhr = new XMLHttpRequest(); | |||
xhr.open('GET', 'https://touhou.market/api/v1/events?include_pending=true&utf8=1', true); | |||
xhr.onreadystatechange = function() { | |||
if (xhr.readyState === 4) { | |||
if (xhr.status === 200) { | |||
var data = JSON.parse(xhr.responseText); | |||
console.log(data); | |||
} else { | |||
console.error('Network response was not ok ' + xhr.statusText); | |||
} | |||
} | |||
}; | |||
xhr.send(); |
2024年6月3日 (一) 11:42的版本
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://touhou.market/api/v1/events?include_pending=true&utf8=1', true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
var data = JSON.parse(xhr.responseText);
console.log(data);
} else {
console.error('Network response was not ok ' + xhr.statusText);
}
}
};
xhr.send();