我是Yii Framework的新手。我正在进行多次依赖性下降。 岛屿 地区 各省 城市
我有一个群岛下拉列表,当您选择群岛时,区域下拉列表将会更新,并且只会显示属于该岛屿的区域。同样的事情发生在省和城市。
现在,我已经完成了群岛。选择岛时,只会显示属于该岛的区域。我的问题是第二级下降。当我选择区域时,只会出现属于该区域的提示。我用与第一种相同的方式和逻辑编码它,但我没有得到任何输出或错误。我正在使用Ajax。你能帮助我吗?感谢
这是我的视图
<div class="row">
<?php echo $form->labelEx($model,'island'); ?>
<?php
echo $form->dropDownList($model,'island',CHtml::listData(Islands::model()->findAll(), 'IslandID', 'IslandName'),
array(
'prompt'=>'Select Island',
'ajax' => array(
'type'=>'POST',
'url'=>CController::createUrl('loadRegions'), //or $this->createUrl('loadcities') if '$this' extends CController
'update'=>'#region', //or 'success' => 'function(data){...handle the data in the way you want...}',
'data'=>array('IslandID'=>'js:this.value'),
))
);
?>
</div>
<div class="row">
<?php echo $form->labelEx($model,'region'); ?>
<?php
/*echo $form->dropDownList($model,'region',CHtml::listData(Regions::model()->findAll(), 'RegionID', 'RegionName'),
array('class'=>'span4 chosen','maxlength'=>20)*/
echo CHtml::dropDownList('region','', array(), array('prompt'=>'Select Region'),
array(
'ajax' => array(
'type'=>'POST',
'url'=>CController::createUrl('loadProvinces'), //or $this->createUrl('loadcities') if '$this' extends CController
'update'=>'#province', //or 'success' => 'function(data){...handle the data in the way you want...}',
'data'=>array('region'=>'js:this.value'),
))
);
?>
</div>
<div class="row">
<?php echo $form->labelEx($model,'province'); ?>
<?php
echo CHtml::dropDownList('province','', array(), array('prompt'=>'Select Province'));
?>
</div>
这是我的控制器
/* Function for dependent dropdown */
public function actionLoadRegions()
{
$data=Regions::model()->findAll('IslandID=:IslandID',
array(':IslandID'=>(int) $_POST['IslandID']));
$data=CHtml::listData($data,'RegionID','RegionName');
foreach($data as $value=>$region)
echo CHtml::tag('option', array('value'=>$value),CHtml::encode($region),true);
}
public function actionLoadProvinces()
{
//var_dump($_POST['region']);
$data=Provinces::model()->findAll('RegionID=:RegionID',
array(':RegionID'=>(int) $_POST['RegionID']));
$data=CHtml::listData($data,'ProvinceID','ProvinceName');
foreach($data as $value=>$province)
echo CHtml::tag('option', array('value'=>$value),CHtml::encode($province),true);
}
我只是按照这个但是在多个下拉列表上,似乎它不起作用?谢谢!
答案 0 :(得分:0)
尝试
<?php echo CHtml::activeDropDownList($model,'region',array(),array(prompt'=>'Select Region'),'ajax' => array(
'type'=>'POST',
'url'=>CController::createUrl('loadProvinces'), //or $this->createUrl('loadcities') if '$this' extends CController
'data'=>array('region'=>'js:this.value'),
'update'=>'#'.CHtml::activeId($model,'province'),
)
)); ?>
另外
<?php echo CHtml::activeDropDownList($model,'province', array(),array('prompt'=>'Choose Province')); ?>
答案 1 :(得分:0)
示例程序,类似于您的要求。
以下是群岛,区域,省表
群岛表
Islands
-------
IslandID
IslandName
区域表
Regions
---------
RegionID
RegionName
IslandID
省份表
Provinces
----------
ProvinceID
ProvinceName
IslandID
RegionID
假设我正在编程用户注册。因此,$model
是User
模型
我的观点
Select Island
<?php
echo $form->dropDownList($model,'IslandID',CHtml::listData(Islands::model()->findAll(), 'IslandID', 'IslandName'),
array(
'prompt'=>'Select Island',
'ajax' => array(
'type' => 'POST', //My method type
'url' => CController::createUrl('myController/LoadRegions'), //This is my request/ajax URL
array('IslandID'=>'js:this.value'), //I'm passing the selected dropdonw value.
'dataType' => 'JSON',
'success'=>'js:function(data)' //The functionaliy after success
. '{'
. ' var html="";'
. ' $.each(data,function(i,obj)'
. ' {'
. ' html+="<option value=obj.RegionID>"+obj.RegionName+"</option>"'
. ' });'
. ' $("#User_RegionID").html(html);' //ID of regions dropdown list
. '}'
)));
);
?>
Select Region
<?php
echo CHtml::dropDownList($model,'RegionID', array(), array('prompt'=>'Select Region'));
?>
对于此dropDownlist id将生成为User_RegionID。即,将使用模型名称和以下划线为中心的字段名称组合生成一个字段ID&#34; _&#34;。
EX:
控制器方法
public function actionLoadRegions()
{
$IslandID=$_POST['IslandID'];
$criteria=new CDbCriteria();
$criteria->select=array('RegionID,RegionName');
$criteria->condition='IslandID='.$IslandID;
$criteria->order='RegionName';
$RegionsAry= Regions::model()->findAll($criteria);
$ary=array();
foreach($RegionsAry as $i=>$obj)
{
$ary[$i]['RegionID']=$obj->RegionID;
$ary[$i]['RegionName']=$obj->RegionName;
}
echo json_encode($ary);
}
获取选择区域的省份列表
Select Region
<?php
echo CHtml::dropDownList($model,'RegionID', array(),
array(
'prompt'=>'Select Region'
'ajax' => array(
'type' => 'POST', //My method type
'url' => CController::createUrl('myController/LoadProvinces'), //This is my request/ajax URL
array('RegionID'=>'js:this.value'), //I'm passing the selected dropdonw value.
'dataType' => 'JSON',
'success'=>'js:function(data)' //The functionaliy after success
. '{'
. ' var html="";'
. ' $.each(data,function(i,obj)'
. ' {'
. ' html+="<option value=obj.ProvinceID>"+obj.ProvinceName+"</option>"'
. ' });'
. ' $("#User_ProvinceID").html(html);' //ID of Province dropdown list
. '}'
));
?>
Select Provinces
<?php
echo CHtml::dropDownList($model,'ProvinceID', array(), array('prompt'=>'Select Province'));
?>
获取所有省份的控制器方法
public function actionLoadProvinces()
{
//To your task
}
答案 2 :(得分:0)
您在控制器文件中没有问题。我认为您在查看文件中遇到问题。特别是,在选择区域部分中。这是我更新的视图文件代码。请删除1个参数array()并检查它。
<div class="row">
<?php echo $form->labelEx($model,'region'); ?>
<?php
echo $form->dropDownList($model,'region',CHtml::listData(Regions::model()->findAll(), 'RegionID', 'RegionName'),
array('class'=>'span4 chosen','maxlength'=>20)*/
echo CHtml::dropDownList('region','', array('prompt'=>'Select Region'),**//Here i remove array() and it works.**
array(
'ajax' => array(
'type'=>'POST',
'url'=>CController::createUrl('loadProvinces'), //or $this->createUrl('loadcities') if '$this' extends CController
'update'=>'#province', //or 'success' => 'function(data){...handle the data in the way you want...}',
'data'=>array('region'=>'js:this.value'),
))
);
?>