Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我要求 MediaWiki API 为每个标题提供图像时,它只返回第一个指定标题的图像。例如,查询:
http://en.wikipedia.org/w/api.php?format=jsonfm&action=query&titles=Id%20Software|Doom%203|Wolfenstein%203D|Quake%20II|John%20D.%20Carmack|John%20Romero|Doom %20(video%20game)|Quake%20(video%20game)|Commander%20Keen|Rage%20(video%20game)&prop=info|images
返回每个页面的信息,但仅返回第一页的图像。为什么?
因为它只是结果的第一页,请注意query-continue底部的 。要获得第二页,您需要使用query-continue添加的内容重复您的查询(例如,类似的内容&imcontinue=15526|Doom_ingame_1.png)。
query-continue
&imcontinue=15526|Doom_ingame_1.png
但更好的解决方案是通过添加&imlimit=max. 在这种情况下,这意味着所有结果都适合一页,但情况并非总是如此。
&imlimit=max
如果您使用某种库(取决于您使用的语言)可能会更好,它可以自动为您处理分页。