使用 jQuery 从 MediaWiki API 获取页面
我一直在尝试想出一个解决方案,使用简单的 jQuery 从 MediaWiki 类别页面获取链接/页面(不知道它叫什么)。我一直在阅读 API 文档,但并不真正知道要寻找什么。
如果您查看此页面,您会看到视频游戏的发布日期。我想要获取的信息。据我所知:
var title="Upcoming_video_games";
$.getJSON("http://en.wikipedia.org/w/api.php?action=query&list=allpages&titles="+title+"&format=json&callback=?", function(data) {
console.log(data);
});
有人知道该怎么做吗?任何帮助表示赞赏。
TIA
I've been trying to come up with a solution to get links/pages (dunno what it's called) from a MediaWiki category page using simple jQuery. I'm been reading the API docs but don't really know what to look for.
If you look at this page you'll see release dates for video games.. that's the information I want to obtain. And this is as far as I got:
var title="Upcoming_video_games";
$.getJSON("http://en.wikipedia.org/w/api.php?action=query&list=allpages&titles="+title+"&format=json&callback=?", function(data) {
console.log(data);
});
Does someone know how to do this? Any help is appreciated.
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
然后获取 var 中的数据并使用 find 函数查找每个对象,例如图像、标题或一些标签。
阿比吉特...
Try this
Then get data in var and use find function each object like images, title, or some tags..
Abhijeet...