我有以下tags.json
文件:
[
{"label" : "Aragorn"},
{"label" : "Arwen"},
{"label" : "Bilbo Baggins"},
{"label" : "Boromir"}
]
以下javascript代码(相同的from the working demo):
<script>
$(function() {
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#people" ) //DIFF FROM DEMO
// don't navigate away from the field on tab when selecting an item
.bind( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).data( "ui-autocomplete" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
source: function( request, response ) {
$.getJSON( 'tags.json', { //DIFF FROM DEMO
term: extractLast( request.term )
}, response );
},
search: function() {
// custom minLength
var term = extractLast( this.value );
if ( term.length < 2 ) {
return false;
}
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
});
</script>
但是当我输入例如:&#34; ar
&#34;在我的输入框中,我得到Aragorn, Arwen, Bilbo Baggins
和Boromir
。我无法弄清楚结果中Bilbo
和Boromir
的原因?我应该只获得Aragorn
和Arwen
,因为这些字符串包含&#39; ar&#39;串...
答案 0 :(得分:0)
问题在于,在jQuery示例中,$.getJSON()
函数调用一些服务器端脚本,该脚本使用term参数执行某些操作,即过滤名称。在您的情况下,tags.json
文件将按原样返回,其中包含所有结果。如果您想根据某些内容过滤结果,例如输入的术语,您需要在调用响应之前应用该过滤(当前是您的$.getJSON()
函数的回调)。