我想在wikitravel上获得巴黎页面的第一段。 我设法通过浏览器HTTP请求获取信息:http://wikitravel.org/wiki/en/api.php?action = query& titles = Paris& prop = extraxt& formatt = json
我希望通过AJAX调用加载此内容,但无法使其正常工作。 这是JSfiddle:https://jsfiddle.net/1f5yfw64/
$(document).ready(function() {
//$.ajax({url:"query_ajax.php"}).done(function(){alert("lol");});
$.ajax({
url: "http://wikitravel.org/wiki/en/api.php?action=query&titles=Paris&prop=extracts&format=json",
data: queryData,
dataType: "json",
//headers: { 'Api-User-Agent': 'Discotravel www.zenmood.be florian.piette@gmail.com'},
type: "GET").done(function(data) {
document.getElementById("quote").innerHTML = data.result;
});
});