'require', 'code|编码' => 'require|checkCode', ]; protected $message = [ ]; protected $scene = [ ]; // 自定义验证规则 protected function checkCode($value,$rule,$data=[]) { $info = Db::name('roles')->where('code',$data['code'])->where('del',0)->find(); if($data['id'] <= 0 && $info){ return '编码已被使用'; } if($info && $data['id'] > 0 && $info['id'] != $data['id']){ return '编码已被使用'; } return true; } }