这是我的代码: 我想在自动完成中有一个“标题”,告知用户一些事情,所以我想使用“类别”。 但它不起作用。 显示“标签”中的值,但不显示类别。 这段代码有什么问题? 也许我正在以错误的方式构建可用标签?但仍然自动完成建议标签...
$(function() {
var jsonArray = <?php echo $jsonValuesSearch; ?>;
var availableTags = [];var i=0;
for (var indeks in jsonArray){
var pom = {
"label" : jsonArray[indeks],
"category" : "Tagi"
};
availableTags[i] = pom;
i++;
}
function split( val ) {
return val.split( " " );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#tags_search" )
// 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( "autocomplete" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
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;
}
});
});
这是我创建json表的方法:
$items = Doctrine::getTable('Tags')->findAll()->toKeyValueArray('id', 'name');
$this->view->jsonValues = Zend_Json_Encoder::encode($items);
答案 0 :(得分:1)
当jQuery的UI自动完成获得标签:和值:的JSON时,它会在下拉列表中显示标签项,选中后,它会将值项设置为输入框的值。在您的情况下,您可以添加其他内容,例如category:。你的select:选项有this.value和item.value,但是你的JSON没有值: - 所以Autocomplete不知道在select中做什么。如果您希望在下拉框中显示标签项和类别项,则需要成功:选项,其表达式可以按照您的方式连接它们。查看自动填充文档页面中的源代码,了解如何执行此操作的一些示例。然后只需在您想要的序列和标点符号中替换变量。