维基百科 API 使用 Json 自动完成
我如何在 jQuery 自动完成中实现它?
$("#searchForm input").autocomplete({
source: function (request, response) {
$.ajax({
url: "http://en.wikipedia.org/w/api.php",
dataType: "jsonp",
data: {
maxRows: 10,
},
});
},
});
How can I implement it in the jQuery Autocomplete?
$("#searchForm input").autocomplete({
source: function (request, response) {
$.ajax({
url: "http://en.wikipedia.org/w/api.php",
dataType: "jsonp",
data: {
maxRows: 10,
},
});
},
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:
如果您查看此示例,您'您将看到一个带有 jsonp 示例的远程调用,
请查看示例的源代码和
success
函数。看起来他们正在映射 jsonp 字段以根据自动完成所需的数据使用数据。使用 fiddler 查看示例中的 json。edit:
if you look at this example, you'll see a remote call with jsonp example
look at the source of their example and the
sucess
function. It looks like they are mapping the jsonp fields to use the data as needed for the autocomplete. use fiddler to see the json coming down from their example.