사용자:Senouis/프론트엔드 스크립트: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
잔글편집 요약 없음 |
편집 요약 없음 |
||
15번째 줄: | 15번째 줄: | ||
} | } | ||
}); | }); | ||
} | |||
function getrawdocuments(){ | |||
for (let name of targetlist){ | |||
fetch('https://dev.libertygame.work/index.php?action=raw&title=' + name).then((result)=>{ | |||
console.log(result); | |||
}); | |||
} | |||
} | } |
2024년 8월 15일 (목) 16:36 판
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)=>{
console.log(result);
});
}
}