我试图从维基百科API中提取json。当我提取主要内容时,它会显示在我的页面上,但编辑链接会显示在<h2>
标题旁边。我已将"disableeditsection": false
true
和false
包括在内,但无济于事。根据这些文档:docs
有关如何从摘录中删除'edit'
文字的任何想法?
提前感谢您的帮助
$(document).ready(function ($) {
console.log('ready1!');
var wikiSearch = "Blue Spring State Park";
var queryURL = "https://en.wikipedia.org/w/api.php";
var params = {
"disableeditsection": false,
"action": "query",
"format": "json",
"prop": "links|images|extlinks|imageinfo|info|url|extracts|text",
"iiprop": "timestamp|user|url|comment",
"meta": "url",
"origin": "*",
"iwurl": 1,
"titles": wikiSearch,
"redirects": 1,
"inprop": "url"
};
queryURL += "?" + $.param(params);
$.ajax({
url: queryURL,
method: "GET"
}).done(function (response) {
console.log('ready2!');
console.log('response', response);
var objResult = response
console.log(objResult);
$.each(response.query.pages, function (c) {
var hey = response.query.pages[c].extract;
$("#wikipediaImages").html(hey);
}); //End .each
}); //End .done
}); //End Document.ready
答案 0 :(得分:0)
您似乎使用extract
的输出。这通常不包括编辑链接。但是在某些页面上似乎存在错误。 disableeditsection不适用于prop=extracts
。
如果您希望html原样,不对部分链接进行编辑,请使用操作解析:https://en.wikipedia.org/w/api.php?action=parse&format=json&page=Blue%20Spring%20State%20Park&disableeditsection=1
一般来说,你的问题不清楚到底想要显示什么。