PHP前端开发

TPshop删除数据后页面刷新问题:如何避免数据显示延迟?

百变鹏仔 3天前 #PHP
文章标签 数据

tpshop重定向后刷新页面

原有代码在删除数据后返回的index页面没有显示删除前取得的数据,这是因为在删除操作后没有刷新页面。

调整后的代码如下:

function lookdele(){    $id = I('get.id');    if($id){        M('org_users')->where('user_id='.$id)->delete();        $this->flash('删除成功'); // 自己写个刷新页面的方法    }else{        $r = M('org_users')->select();        return $this->fetch('index', $r);    }}