1

我正在尝试为 CakePhp 2.x 中的文本框设置 Ajax 自动完成功能。

在我看来,我有:

<?php $this->start('script'); ?>
<script type="text/javascript">
    $(document).ready(function () {
        var options, a;
        jQuery(function() {
            options = { 
                serviceUrl: "<?php echo $this->Html->Url(array('Controller' => 'Logs', 'action' => 'autoComplete')); ?>",
                minChars: 2,
            };
            a = $('#LogTimeSpent').autocomplete(options);
        });
    });
    $('#saveCust').click(function () {
        alert("Test")
    });
</script>
<?php $this->end(); ?>

在我的控制器中,我有:

function autoComplete($query) {
    if ($this->request->is('ajax'))
    {
        $suggestions = $this->Customer->find('all', array(
            'conditions' => array(
                'Customer.fullName LIKE' => '%'.$query.'%'
                )
            ));
        return json_encode(array('query' => $query, 'suggestions' => $suggestions));

    }
}

如果影响查询,Customer.fullName 是一个虚拟字段。Firebug 目前给我一个 500 内部服务器错误。

4

1 回答 1

3

我发现您必须做一些特别的事情才能使虚拟字段起作用。我决定虚拟字段不是要走的路,所以我更新了它。$query作为参数也是不正确的,我需要从中获取查询字符串$this->params['url']['query'];。最后,json_encode我需要使用_serialize. 这是我更新的控制器,所以希望这会对某人有所帮助。我的观点在原帖中是正确的。

function autoComplete() {
    if ($this->request->is('ajax'))
    {
        $query = $this->params['url']['query'];
        $this->set('query', $query);

        $customer = $this->Log->Customer->find('all', array(
            'conditions' => array(
                'OR' => array(
                    'Customer.first_name LIKE' => '%'.$query.'%',
                    'Customer.last_name LIKE' => '%'.$query .'%'
                )),
            'fields' => array(
                'Customer.first_name', 'Customer.last_name'
                )
            ));

        $names = array();
        $id = array();
        foreach ($customer as $cust) {
            $fullName = $cust['Customer']['last_name'] . ', ' . $cust['Customer']['first_name'];
            array_push($names, $fullName);
            array_push($id, $cust['Customer']['id']);
        }
        $this->set('suggestions', $names);
        $this->set('data', $id);
        $this->set('_serialize', array('query', 'suggestions', 'data'));        
    }
}
于 2013-03-28T20:47:42.863 回答