この 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);
}