使用维基百科 api 内容模型 returns 未知胡子括号
Using wikipedia api contentmodel returns unkown mustache braces
我正在尝试使用 api 从 wiki 网站获取球员比赛历史记录。但是当我提出请求时,它 returns 胡子大括号而不是匹配历史记录。
示例:
{
query: {
pages: {
42323: {
pageid: 42323,
ns: 0,
title: "Acorn/Match History",
revisions: [
{
contentformat: "text/x-wiki",
contentmodel: "wikitext",
*: "{{PlayerTabsHeader}} {{MatchHistory|[[SP Name::Acorn]]}}"
}
]
}
}
}
}
在维基页面上它显示了 table 的输赢。我怎样才能得到这些信息?
API returns json format 页面的 wikicode,正如您所要求的。如果您想要代码的呈现版本,即用户会看到的文本,您可以将 action=render
添加到文章 URL,如下所示:
http://lol.esportspedia.com/wiki/Acorn/Match%20History?action=render
我正在尝试使用 api 从 wiki 网站获取球员比赛历史记录。但是当我提出请求时,它 returns 胡子大括号而不是匹配历史记录。
示例:
{
query: {
pages: {
42323: {
pageid: 42323,
ns: 0,
title: "Acorn/Match History",
revisions: [
{
contentformat: "text/x-wiki",
contentmodel: "wikitext",
*: "{{PlayerTabsHeader}} {{MatchHistory|[[SP Name::Acorn]]}}"
}
]
}
}
}
}
在维基页面上它显示了 table 的输赢。我怎样才能得到这些信息?
API returns json format 页面的 wikicode,正如您所要求的。如果您想要代码的呈现版本,即用户会看到的文本,您可以将 action=render
添加到文章 URL,如下所示:
http://lol.esportspedia.com/wiki/Acorn/Match%20History?action=render