如何在jquery自动完成中调用远程数据源?
我有一个包含 json 格式数据的操作文件。我正在尝试在 jquery ajax 中实现自动完成。在 ajax 调用中,anybdy 可以帮助我调用包含 jquery 自动完成所需的 json 数据的操作类吗?我这样做的方式如下,我无法在url中调用action类
$.ajax(){
type: "POST",
url:
dataType: "json",
data: {},
contentType: "application\json;charset=utf-8",
success: function(response) {
var dataFromServer=eval('('+jqxhr.responseText+')');
$.autocomplete({
source:dataFromServer
)};
}
error: function(XMLHttpRequest,textStatus,errorThrown){
alert(textStatus);
}
I have a action file having data in json format.I am trying to implement autocomplete in jquery ajax.In the ajax call,can anybdy help me in calling that action class containing json data,required in jquery autocomplete .the way I m doing it is as follows,I m unable to call action class in url
$.ajax(){
type: "POST",
url:
dataType: "json",
data: {},
contentType: "application\json;charset=utf-8",
success: function(response) {
var dataFromServer=eval('('+jqxhr.responseText+')');
$.autocomplete({
source:dataFromServer
)};
}
error: function(XMLHttpRequest,textStatus,errorThrown){
alert(textStatus);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)