舰长哥哥帮看看,我模仿批量删除功能页面不刷新 [ 新手入门 ]
我模仿舰长哥哥的yii中文注释0.7中的manage中的批量删除功能,我就一个表,内容是删除了,但是页面没有刷新,请帮看看 下面是控制器中部分代码: //批量删除
public function actionDelall()
{
if (Yii::app()->request->isPostRequest)
{
$criteria= new CDbCriteria;
$criteria->addInCondition('id', $_POST['selectdel']);
Test::model()->deleteAll($criteria);//Words换成你的模型
if(isset(Yii::app()->request->isAjaxRequest)) {
echo CJSON::encode(array('success' => true));
} else
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
else
throw new CHttpException(400,'无效请求,请不要做这种无效请求.');
}
共 8 条回复
-
lz19881123 回复于 2011-09-29 12:44 举报
舰长哥哥,等你出来啊!呵呵
xuelz 淄博
注册时间:2011-08-17
最后登录:2013-04-24
在线时长:0小时0分
最后登录:2013-04-24
在线时长:0小时0分
- 粉丝0
- 金钱305
- 威望0
- 积分305