我想问一下,如何限制搜索结果。 这是一段代码,负责查询。 我想只有五个自动填充项目。
来源:
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
}));
}
});
}
答案 0 :(得分:1)
尝试
response($.map(data, function(item, i) {
return i < 5 ? item.person : null
})
);