MediaWiki:RecentActivities.js:修订间差异
来自东方活动维基
无编辑摘要 |
无编辑摘要 |
||
第5行: | 第5行: | ||
if (xhr.status === 200) { | if (xhr.status === 200) { | ||
var data = JSON.parse(xhr.responseText); | var data = JSON.parse(xhr.responseText); | ||
console.log(data); | //console.log(data); | ||
data.forEach(e => { | |||
console.log(data) | |||
}) | |||
} else { | } else { | ||
console.error('Network response was not ok ' + xhr.statusText); | console.error('Network response was not ok ' + xhr.statusText); |
2024年6月3日 (一) 12:20的版本
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://thonly.cc/proxy_thmarket/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);
data.forEach(e => {
console.log(data)
})
} else {
console.error('Network response was not ok ' + xhr.statusText);
}
}
};
xhr.send();