CI中的表单验证 - unqiue

发布于 2022-09-03 13:53:30 字数 211 浏览 7 评论 0

表单验证中is_unique的时候直接去数据库查询,但是想排除自己,该怎么处理?
比如我的用户名(unique字段)是甲壳虫、id为1,修改用户信息的时候,如果直接用unique,则直接提示被占用,请问如何能排除自己,又能检验唯一性
即这样的sql来验证唯一性 —— select username from xxx where username='甲壳虫' and id!=1
谢谢诸位了

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

在梵高的星空下 2022-09-10 13:53:30

看源码就知道,CI框架中没有这个功能:

public function is_unique($str, $field)
{
    sscanf($field, '%[^.].%[^.]', $table, $field);
    return isset($this->CI->db)
        ? ($this->CI->db->limit(1)->get_where($table, array($field => $str))->num_rows() === 0)
        : FALSE;
}

所以只能自己扩展这个方法,例如:

//自定义验证
$id='x';//获取用户ID
$this->form_validation->set_rules('username', 'Username', "callback_username_check[$id]");
//相关方法
public function username_check($username,$id)
{
    //这里处理逻辑
    $info=$this->db->select('username')
    ->where('username',$username)
    ->where('id !=',$id)
    ->get('xxx')
    ->row_array();
    if (!empty($info)){
        $this->form_validation->set_message('username_check', '手机号已存在');
        return FALSE;
    }else{
        return TRUE;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文