-1

您好,我正在尝试在搜索框中解析 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
                                }                                             
                            }));
                        }                      
                    }); 
4

1 回答 1

2

在看到数据的 console.log 之后,您的迭代元素值为

"[ "ajax",{ "numFound":1, "startOffset":0, "endOffset":4, "suggestion":["ajaxs"]}, "sup",{ "numFound":10, "startOffset":5, "endOffset":8, "suggestion":["super", "supercoppa", "supercup", "superleague", "superstar", "supervisor", "supoporter", "suporter", "suporters", "supusepa"]}]" 

您必须在建议上更深入地工作。

于 2013-02-07T16:20:43.147 回答