4

是否可以在不使用常规 id、label、value 的情况下让 JQuery Autocomplete 工作?

例如,我不想使用:

[ { "id": "Botaurus stellaris", "label": "Great Bittern", "value": "Great Bittern" }, 
{ "id": "Asio flammeus", "label": "Short-eared Owl", "value": "Short-eared Owl" }]

反而:

[ { "my_id": "Botaurus stellaris", "first_name": "Great Bittern", "last_name": "Great Bittern" }, 
{ "my_id": "Asio flammeus", "first_name": "Short-eared Owl", "last_name": "Short-eared Owl" }]

就像,JQuery autocomplete通常需要什么id,value,label,我可以让它接受my_id, first_name, last_name并使 Jquery Autocomplete 像对待一样id,label,value吗?

当我不想修改来自数据源的数据键以将其显示在 JQuery 自动完成上时,这可能很有用。

4

2 回答 2

2

没关系,

从 JQueryUI 的自动完成示例源中找到答案:

    $( "#city" ).autocomplete({
        source: function( request, response ) {
            $.ajax({
                url: "http://ws.geonames.org/searchJSON",
                dataType: "jsonp",
                data: {
                    featureClass: "P",
                    style: "full",
                    maxRows: 12,
                    name_startsWith: request.term
                },
                success: function( data ) {
                    response( $.map( data.geonames, function( item ) {
                        return {
                            label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
                            value: item.name
                        }
                    }));
                }
            });
        },
        minLength: 2
    });

在这里,source被分配了一个函数,它可以转换并返回任何类型的键,以将其转换为 JQuery 的 Autocomplete 的id,value,label.

可能会有所帮助。

于 2012-07-07T14:50:27.133 回答
1

还有一个更好的解决方案。它甚至记录在 jquery-ui 网站上。

http://jqueryui.com/demos/autocomplete/#custom-data

$("input").autocomplete({..})
.data( "autocomplete" )._renderItem = function( ul, item ) {return $( "<li></li>" )
    .data( "item.autocomplete", item )
            .append( "<a>" + item.label + "<br>" + item.desc + "</a>" )
            .appendTo( ul );
    };
于 2012-08-23T09:58:45.763 回答