사용자:Senouis/프론트엔드 스크립트: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
편집 요약 없음 |
잔글편집 요약 없음 |
||
18번째 줄: | 18번째 줄: | ||
function getrawdocuments(){ | function getrawdocuments(){ | ||
for (let name of targetlist){ | for (let name of targetlist){ | ||
fetch('https://dev.libertygame.work/index.php?action=raw&title=' + name).then((result)=>{ | fetch('https://dev.libertygame.work/index.php?action=raw&title=' + name).then((result)=>result.json()).then((result)=>{ | ||
console.log(result); | console.log(result); | ||
}); | }); | ||
} | } | ||
} | } |
2024년 8월 15일 (목) 16:37 판
let targetlist = [];
function crawlingSectionRatings() {
let api = new mw.Api();
api.get({
action: "query",
list: "categorymembers",
cmtitle: "분류:리버티게임",
cmtype: "page",
cmnamespace: 0,
cmlimit: 500
}).then((result) => {
for (const value of result.query.categorymembers){
targetlist.push('토론:'+value.title);
}
});
}
function getrawdocuments(){
for (let name of targetlist){
fetch('https://dev.libertygame.work/index.php?action=raw&title=' + name).then((result)=>result.json()).then((result)=>{
console.log(result);
});
}
}