我试图在我的程序中实现动态自动完成。第一次输入后它工作得很好。但它没有显示第一次尝试的建议。但是,服务器正在响应自动完成所需的源。这是我的代码。
$('.autocomplete').live('keyup', function(){
$this = $(this);
var search = $this.val();
$.ajax({
url:'/package/index/search/keyword/'+search+'/format/json',
async: false,
success: function(res){
//console.log(res.options);
//console.log(res.defined_ids);
staticObject = res.defined_ids;
$this.autocomplete({
source: res.options
});
}
});
});
服务器端代码是
$keyword = $this->_getParam('keyword');
$elementDetailModel = new Package_Model_ElementDetail();
$arr = $elementDetailModel->searchElementDetail($keyword);
$this->view->options = $arr['options']; // returns in the format array("test2","my new test", "night stay in delux room")
$this->view->defined_ids = $arr['defined_ids']; // returns in the format array(21::21=>"test2", 22::22=>"my new test", 24::24=>"night stay in delux room")
当我在 firebug 中控制台记录 defined_ids 和选项时,当我在文本字段中输入“t”时,我得到了以下响应。
选项:
["test2", "我的新测试", "晚上住豪华房"]
定义ID:
Object { 21::21="test2", 22::22="my new test", 24::24="晚上住豪华房"}
任何帮助都是不言而喻的。提前致谢。