MediaWiki:RecentActivities.js:修订间差异
来自东方活动维基
无编辑摘要 |
无编辑摘要 |
||
第7行: | 第7行: | ||
//console.log(data); | //console.log(data); | ||
data.forEach(e => { | data.forEach(e => { | ||
console.log( | console.log(e) | ||
}) | }) | ||
} else { | } else { |
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(e)
})
} else {
console.error('Network response was not ok ' + xhr.statusText);
}
}
};
xhr.send();