在 Yii 中使用带有 CJuiAutoComplete 的模型
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.