在 Yii 中使用带有 CJuiAutoComplete 的模型

发布于 2024-11-17 04:57:01 字数 1147 浏览 1 评论 0原文

我对 Yii 中的 CJuiAutoComplete 以及将其与模型一起使用时遇到问题。我已经能够在函数内运行查询并将其传回,但不能使用模型。它只是不返回任何结果。谁能看出问题出在哪里吗?

这是控制器中的代码:

public function actionAutocompleteTest() {
        $arr = array();
            foreach($models as $model) {
                $arr[] = array(
                'label'=>$model->pID,  // label for dropdown list          
                'value'=>$model->pID,  // value for input field          
                'id'=>$model->pName,            // return value from autocomplete
             );      
    }
        echo CJSON::encode($arr);

    Yii::app()->end();
}

这是页面上的代码:

<?php

    $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
        'model'=>'Players',
            'attribute'=>array('pID', 'pName'),
        'name'=>'test',
        'source'=>$this->createUrl('jui/autocompleteTest'),
        // additional javascript options for the autocomplete plugin
        'options'=>array(
                'showAnim'=>'fold',
                'select'=>'alert("hello"); return true;'
        ),
    ));

    ?>

I have an issue with the CJuiAutoComplete in Yii and using it with a model. I've been able to run a query within the function and pass that back, but not with using a model. It just returns no results. Can anyone see where the issue is?

This is the code in the controller:

public function actionAutocompleteTest() {
        $arr = array();
            foreach($models as $model) {
                $arr[] = array(
                'label'=>$model->pID,  // label for dropdown list          
                'value'=>$model->pID,  // value for input field          
                'id'=>$model->pName,            // return value from autocomplete
             );      
    }
        echo CJSON::encode($arr);

    Yii::app()->end();
}

This is the code on the page:

<?php

    $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
        'model'=>'Players',
            'attribute'=>array('pID', 'pName'),
        'name'=>'test',
        'source'=>$this->createUrl('jui/autocompleteTest'),
        // additional javascript options for the autocomplete plugin
        'options'=>array(
                'showAnim'=>'fold',
                'select'=>'alert("hello"); return true;'
        ),
    ));

    ?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白况 2024-11-24 04:57:01

actionAutocompleteTest将获取CJuiAtoComplete通过post发送的数据。因此,您必须使用数据来过滤帖子的结果,运行查询并返回结果。

actionAutocompleteTest will get the data sent by CJuiAtoComplete via post. So, you have to use the data to filter the results from the post, run the query and return the results.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文