我正在解析从 Cakephp 2.0 Controller 返回的字符串。
我的自动完成代码是..
jQuery("#name").autocomplete( '<?php echo HTTP_PATH.'/lensmaterials/getBrands'; ?>', {
multiple: true,
mustMatch: true,
matchContains: true,
autoFill: false,
dataType: "json",
parse: function(data) {
return $.map(data, function(item) {
return { data: item, value: item.label, result: item.label};
});
},
formatItem: function(item) {
return '<li>' + item.label + '</li>';
}
});
我得到的列表是 Value,而不是 undefined,而不是 value 而不是 undefined。它以萤火虫中的错误结束了我。如果我选择比值未在我的文本框中输入。我想要美丽的价值。那是在 ul 中显示列表的 Div,li ...
我的控制器代码是..
public function getBrands(){
$brandList = $this->Brand->find('list',array('fields'=>array('id','brand_name'),'order' => array('Brand.brand_name')));
//pr($brandList); exit;
foreach ($brandList as $key => $name) {
$json_output[]['id'] = $key;
$json_output[]['label'] = $name;
}
echo json_encode($json_output);
$this->autoRender = false;
}
返回 JSON 字符串是
[{"id":1},{"label":"Bvlgari"},{"id":2},{"label":"Chanel"},{"id":7},{"label":"D & G"},{"id":8},{"label":"Dior"},{"id":10},{"label":"Emporio Armani"},{"id":11},{"label":"Fendi"},{"id":12},{"label":"Giorgio Armani"},{"id":13},{"label":"Gucci"},{"id":14},{"label":"Oakley"},{"id":15},{"label":"Oliver Peoples"},{"id":16},{"label":"Paul Smith"},{"id":4},{"label":"Polo Ralph Lauren"},{"id":18},{"label":"Prada"},{"id":19},{"label":"Prada Linea Rossa"},{"id":20},{"label":"Ray Ban"},{"id":21},{"label":"Tiffany"},{"id":3},{"label":"Tom Ford"}]
最终它没有在我输入时返回。那就是我有香奈儿,如果我输入的不是未格式化和未定义的,就永远不会继续我的键盘输入。它保持不变。