限制Jquery UI自动完成的结果

时间:2015-03-21 16:39:53

标签: javascript jquery autocomplete

我想问一下,如何限制搜索结果。 这是一段代码,负责查询。 我想只有五个自动填充项目。

来源:

 function( request, response ) {
        $.ajax({
            type : 'post',
            dataType: "json",
            data: {
                'person':request
            },

            url: 'PersonWatch/all',

            success: function(data) {
                response( $.map( data, function(item, i) {
                        return item.person
                }));
            }
        });
    }

1 个答案:

答案 0 :(得分:1)

尝试

response($.map(data, function(item, i) {
             return i < 5 ? item.person : null
         })
        );