사용자:Senouis/프론트엔드 스크립트: 두 판 사이의 차이

리버티게임(개발), 모두가 만들어가는 자유로운 게임
둘러보기로 이동 검색으로 이동
잔글편집 요약 없음
잔글편집 요약 없음
1번째 줄: 1번째 줄:
let targetlist = [];
function crawlingSectionRatings() {
function crawlingSectionRatings() {
let api = new mw.Api();
let api = new mw.Api();
9번째 줄: 11번째 줄:
cmlimit: 500
cmlimit: 500
}).then((result) => {
}).then((result) => {
console.log(result.query.categorymembers);
for (const value of result.query.categorymembers){
targetlist.push('토론:'+value.title);
}
});
});
}
}

2024년 8월 15일 (목) 16:03 판

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);
		}	
	});
}