CakePhp Ajax自动完成

时间:2013-03-28 15:24:24

标签: jquery jquery-autocomplete cakephp-2.1 json

我正在尝试在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个内部服务器错误。

1 个答案:

答案 0 :(得分: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'));        
    }
}