由于某种原因,这不起作用,我找不到使它起作用的方法!
在我的名为“ExplicacaoController”的控制器上,我有这个:
public function accessRules()
...
'actions'=>array('index','view', 'test', 'ajaxrequest'),
...
public function actionAjaxRequest()
{
$val1 = $_POST['val1'];
$val2 = $_POST['val2'];
echo "something";
Yii::app()->end();
}
在我看来,我有:
<script type="text/javascript">
...
$.ajax({
type: "POST",
url: "<? echo Yii::app()->createUrl('explicacaoController/ajaxRequest'); ?>",
data: {val1:1,val2:2},
success: function(msg){
alert("Sucess")
},
error: function(xhr){
alert("failure"+xhr.readyState+this.url)
}
});
...
发生的事情是我总是得到这个错误:
failure4<? echo Yii::app()->createUrl('explicacaoController/ajaxRequest'); ?>
我真的需要一些帮助