我是yii的新手。我想在点击的情况下将一个参数列表从js传递给我的控制器'一个按钮。
我的代码是(在名为' studentReport'的视图中):
echo CHtml::submitButton('post' ,array('onclick'=>'js:passParams()', 'type' => 'POST',
,'name' => 'approveBtn'));
我的js代码在同一个表单中:
function passParams(){
var selctedbox = [];
for(var i=0; i<fields.length; i++){
selctedbox .push(fields[i].value);
}
$.post( <?php echo "'" . $this->createUrl('student/post') ."'" ; ?>,
{ idList: selctedbox } );
}
我的控制器代码是:
public function actionPost()
{
$newList= array();
$idListe=$_POST;
foreach ($idListe['idList'] as $value) {
$newList[]=$value;
}
$this->render('_compose',array('newList'=>$newList,'model'=>$model));
}
这里我想将我的值列表传递给action actionPost()。
我不想在url中显示传递的参数,并使用来自控制器的传递参数打开一个新视图
我该怎么办?
答案 0 :(得分:1)
尝试以下代码:
<?php echo CHtml::Button('SUBMIT',array('onclick'=>'passParams();')); ?>
<script type="text/javascript">
function passParams(){
var data=$("#formID").serialize();
$.ajax({
type: 'POST',
url: '<?php echo Yii::app()->createAbsoluteUrl("student/post"); ?>',
data:data,
success:function(data){
alert(data);
},
error: function(data) { // if error occured
alert("Error occured.please try again");
alert(data);
}
});
}
</script>
答案 1 :(得分:1)
您也可以使用ajaxsubmit按钮。
<?php
echo CHtml::ajaxSubmitButton ('Create','default/create',
array(
'data'=>'js:$("#test-form").serialize()',
'method'=>'post' ,
'success' => 'function(html) {
if(html=="success"){
window.location="";
}else{
jQuery("#errorSummary").html(html)
}}',
),array('class'=>'test') );
?>
答案 2 :(得分:0)
使用ajax Jquery Post
function passParams(){
var selectedbox = [];
selectedbox.push(fields[1,2,3]);
$.post( <?php echo "'" . $this->createUrl('student/post') ."'" ; ?>,
{ try: 'atry', postselectedbox: selectedbox } );
}
在学生/职位
var_dump($_POST) //so you can check the content
并重新编写符号
public function actionPost() // camelCase and not actionpost
{
// and for check add
var_dump($_POST)
$newList= array();
$idListe=$_POST;
.......
this->render('_compose',array('newList'=>$newList,'model'=>$model));
如果您的网址错误(学生/学生),请删除学生表格网址
$.post( <?php echo "'" . $this->createUrl('post') ."'" ; ?>,
{ idList: selctedbox } );