我需要了解如何在 Yii 中构建 Ajax 请求。我在 Yii 网站上搜索,发现以下文章:
http://www.yiiframework.com/wiki/24/
我编写了代码并在本地主机上对其进行了测试?但由于某种原因它不起作用。
对于第一次尝试,我只想做一些简单的事情。我想使用 Ajax 在我的页面上打印另一个操作的结果。我想要显示的文本是“嗨”。
这是该操作的 mu 代码的样子:
查看/索引
<?php
/* @var $this CurrentController */
$this->breadcrumbs=array(
'Current'=>array('/current'),
'index',
);
?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'users-index-form',
'enableAjaxValidation'=>true,
)); ?>
<?php
echo CHtml::dropDownList('country_id','', array(1=>'USA',2=>'France',3=>'Japan'),
array(
'ajax' => array(
'type'=>'POST', //request type
'url'=>CController::createUrl('currentController/dynamiccities'), //url to call.
//Style: CController::createUrl('currentController/methodToCall')
'update'=>'#city_id', //selector to update
//'data'=>'js:javascript statement'
//leave out the data key to pass all form values through
)));
//empty since it will be filled by the other dropdown
echo CHtml::dropDownList('city_id','', array());
?>
<?php $this->endWidget(); ?>
</div><!-- form -->
控制器
<?php
class CurrentController extends Controller
{
public function accessRules()
{
return array(
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('create','update','dynamiccities'),
'users'=>array('@'),
),
);
}
public $country_id;
public function actionIndex()
{
$this->render('index');
}
public function actionDynamiccities() /// Called Ajax
{
echo CHtml::tag('option',
array('value'=>'2'),CHtml::encode('Text'),true);
}
}
不幸的是,我没有得到想要的结果。我得到的是:
- 下拉列表包含国家/地区数组。
- 另一个下拉列表但为空?!
我应该如何修复我的示例代码以使其正常工作?谁能看到我做错了什么?