jQuery自动完成 - 无效标签(Firebug)/未捕获的SyntaxError(Chrome)

时间:2011-03-19 19:38:00

标签: php jquery codeigniter jquery-autocomplete

在SO的优秀人员的帮助下,我设法在CodeIgniter 2.0的裸骨测试页面上运行自动完成功能。

当我将代码移动到实际页面时,会出现问题。

一旦我输入第一个字母,我就开始使用Firebug

invalid label
[Break On This Error] {"response":"true","message":[{"label"... My Park","value":"Thier  Park"}]}

并在Chrome上

// jquery.min.js:line 16
Uncaught SyntaxError: Unexpected token :
d.d.extend.globalEvaljquery.min.js:16
d.ajaxSetup.converters.text scriptjquery.min.js:16
bQjquery.min.js:16
vjquery.min.js:16
d.support.ajax.d.ajaxTransport.send.c

这是我的CI视图代码:

<script>
    $(document).ready(function() {    

        $("#exer_loc").autocomplete({
            source: function(req, add){
                $.ajax({
                    url: '<?php echo base_url(); ?>exercise/loc_autocomplete',
                    dataType: 'json',
                    type: 'POST',
                    data: req,
                    success: function(data){
                        if(data.response =='true'){
                           add(data.message);
                        }
                    }
                });
        },
        minLength: 1,
        select: function(event, ui){
            $(this).end().val(ui.item.value);
            }
        });

     });   
</script>

和我的CI控制器代码:

public function loc_autocomplete()
{

    $search = $this->input->post('term');

    $data['response'] = 'false';
    $this->db->select('*');
    $this->db->from('loc_exercise');
    $this->db->like('locations', $search);
    $locations = $this->db->get()->result();

    if (count($locations) > 0) {
        $data['message'] = array();

        foreach ($locations as $location) {
            $data['message'][] = array('label' => $location->locations,
                'item'  => $location->locations,
                'value' => $location->locations );
        }

        $data['response'] = 'true';
    }
    echo json_encode($data);
}

如上所述,这一切都完美地适用于CI中的骨干页面。

但是当输出到我的标准CI模板时,我得到了错误。我已经禁用了其他几个JS脚本,问题仍然存在。

奇怪的是,如果我在上面的CI视图脚本之前重复下载jQuery就可以了。但显然这不是解决方案:P。

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
    <script>
        $(document).ready(function() {    

            $("#exer_loc").autocomplete({
                source: function(req, add){
etc...

任何人都知道如何杀死这个错误?

谢谢!

编辑:

以下是控制台上的JSON响应

    [Object { label="My Place", item="My Place", value="My Place"}, Object { label="Pond Park", item="Pond Park", value="Pond Park"}, Object { label="Rock Park", item="Rock Park", value="Rock Park"}]

//html
{"response":"true","message":[{"label":"My Place","item":"My Place","value":"My Place"},{"label":"Fresh Pond Park","item":"Fresh Pond Park","value":"Fresh Pond Park"},{"label":"Cat Rock Park","item":"Cat Rock Park","value":"Cat Rock Park"}]}

EDIT2:

使用console.log(req)节目

Object { term="asd"}

1 个答案:

答案 0 :(得分:0)

听起来它与此处列出的jQuery repeat ajax调用错误有关:jQuery Bug #8398

事实证明,jQuery 1.5正在修改json到jsonp的后续ajax调用,这会导致此错误。

我通过遵循错误更改历史记录中建议的一个解决方法并在我的ajax调用之前将以下代码放在某处来修复它:

$.ajaxSetup({
   jsonp: null,
   jsonpCallback: null
});

也应解决其他ajax请求的任何问题。