我想使用 json` 发出跨域 ajax 请求
$(function() {
$(".x25").autocomplete({
source: function(request, response) {
$.ajax({
url: "http://localhost:8983/solr/select",
processData: false,
crossDomain: true,
contentType: "application/json",
jsonp: false,
data: {
q: "name:" + request.term + "*",
wt: "xslt",
tr: "solr2json.xsl"
},
dataType: "jsonp",
success: function() {
alert("Success");
},
error: function() {
alert("failure");
}
});
return false;
}
});
});
这是我的代码,我一直在尝试使用 json 和 jsonp,但没有成功,我对远程服务器没有任何控制权。任何帮助。