jQuery 미디어위키 API 표제어 있는지 확인하기

1 개요[ | ]

jQuery 미디어위키 API 표제어 있는지 확인하기
ajax 미디어위키 API 표제어 있는지 확인하기
var keyword = "Albert Einstein";
$.get("/w/api.php",{
	action: "query",
	format: "json",
	titles: keyword
})
.done(function(data) {
	if( data.query.pages[-1] == undefined || data.query.pages[-1].missing != "" ) {
		console.log('있음');
		return;
	}
	console.log('없음');
});

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}