我如何从这个 ajax 获得结果,我可以将它传递给 hello 函数吗?console.log(data);
结果在 hello 函数中未定义
$(function(){
$.ajax({
url:'example.com',
type : 'POST' ,
async: false,
contentType: "application/json",
dataType: 'jsonp' ,
data : {
collectionName:'alltibyy',
facet: 'constellio',
fq: qt_value2,
wt: 'json',
hl: 'true',
q : key,
searchType: 'atLeastOneWord',
rows: '10',
'json.wrf': hello
},
success: function(json) {
},
error: function(e) {
console.log(e.message);
}
});
});
function hello(data)
{
console.log(data);
}