加载中...

yii post delete request more safe


常规的delete方法如下:

  1. /**
  2. * Deletes a particular model.
  3. * If deletion is successful, the browser will be redirected to the 'index' page.
  4. */
  5. public function actionDelete()
  6. {
  7. if(Yii::app()->request->isPostRequest)
  8. {
  9. // we only allow deletion via POST request
  10. $this->loadModel()->delete();
  11.  
  12. // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
  13. if(!isset($_GET['ajax']))
  14. $this->redirect(array('index'));
  15. }
  16. else
  17. throw new CHttpException(400,'Invalid request. Please do not repeat this request again.');
  18. }



通过POST请求来删除,会弹出对话框,让用户确认,更安全些。
在CGridView 中 ,会自动的发送POST 请求。
  1. array(
  2. 'headerHtmlOptions'=>array('width'=>'60px'),
  3. 'class'=>'CButtonColumn', 'header'=>'操作',
  4. 'template'=>'{view} {update} {delete}',
  5. 'buttons'=>array(
  6. 'view'=>array(
  7. 'label'=>'查看',
  8. 'url'=>'Yii::app()->createURL("supervise/default/view", array("id"=>$data->id))',
  9. 'imageUrl'=>Yii::app()->baseUrl.'/images/icons/user.png',
  10. ),
  11. 'update'=>array(
  12. 'label'=>'修改',
  13. 'url'=>'Yii::app()->createURL("supervise/default/update", array("id"=>$data->id))',
  14. 'imageUrl'=>Yii::app()->baseUrl.'/images/icons/user_edit.png',
  15. ),
  16. 'delete'=>array(
  17. 'label'=>'删除',
  18. 'url'=>'Yii::app()->createURL("supervise/default/delete", array("id"=>$data->id))',
  19. 'imageUrl'=>Yii::app()->baseUrl.'/images/icons/user_delete.png',
  20. ),
  21. ),
  22. ),

但是如果在别的地方你简单的使用 createUrl来创建的都是GET REQUEST,无法删除记录的

Error 400

Invalid request. Please do not repeat this request again.

解决方法:


  1. <?php
  2. echo CHtml::link(CHtml::encode('删除巡察记录'), array('/***/default/delete', 'id'=>$id),
  3. array(
  4. 'submit'=>array('/***/default/delete', 'id'=>$id),
  5. 'class' => 'delete','confirm'=>'This will remove the image. Are you sure?'
  6. )
  7. );
  8. ?>






还没有评论.