0

我正在解析从 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"}]

最终它没有在我输入时返回。那就是我有香奈儿,如果我输入的不是未格式化和未定义的,就永远不会继续我的键盘输入。它保持不变。

4

1 回答 1

0

我认为您的数据格式错误。和属性应该在同一个对象中idlabel您的一半对象没有label属性,因此尝试访问它会导致undefined(即您得到{data: {...}, value: undefined, result: undefined})。

将您的生成过程更改为:

foreach ($brandList as $key => $name) {
    $json_output[] = array('id' => $key, 'label' => $name);
}

然后输出将是:

[{"id":1,"label":"Bvlgari"},{"id":2,"label":"Chanel"},...]
于 2012-04-24T11:25:34.440 回答