海印网
海印网

TPshop后台删除数据后页面不刷新如何解决?

admin数码00

TPshop后台删除数据后页面不刷新如何解决?-第1张图片-海印网

tpshop重定向问题

问题:

在tpshop后台中,删除某模块数据后无法返回展示页并显示更新后的数据。

代码示例:

function lookdele(){
    $id = i('get.id');
    m('org_users')->where('user_id='.$id)->delete();
    return $this->fetch('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);
    }
}

登录后复制

修改后的代码在删除数据后会执行刷新页面操作,从而显示更新后的数据。

以上就是TPshop后台删除数据后页面不刷新如何解决?的详细内容,更多请关注其它相关文章!

Tags: 数据页面

Sorry, comments are temporarily closed!