您好,我正在尝试在搜索框中解析 solrSuggester 查询输出,但没有得到准确的结果。请帮忙…………
$(document).ready(function() {
$( "#searchterm" ).autocomplete({
source: function( request, response ) {
var text = $("#searchterm").val();
$.ajax({
url: 'http://localhost:8983/solr/collection1/suggest?wt=json&indent=true&spellcheck=true&spellcheck.q='+request.term+'&spellcheck.onlyMorePopular=true&spellcheck.count=50&start=0&rows=10',
dataType: "jsonp",
jsonp: 'json.wrf',
type:'GET',
contentType: "application/json; charset=utf-8",
crossDomain: true,
success: function(data) {
response( $.map(data.spellcheck.suggestions, function(item,i) {
return {
label: item.suggestion,
value: item.suggestion
}
}));
}
});