mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 12:42:48 +08:00
验证提示信息支持多语言
This commit is contained in:
@@ -36,55 +36,55 @@ class Validate
|
||||
|
||||
// 验证规则默认提示信息
|
||||
protected static $typeMsg = [
|
||||
'require' => ':attribute不能为空',
|
||||
'number' => ':attribute必须是数字',
|
||||
'integer' => ':attribute必须是整数',
|
||||
'float' => ':attribute必须是浮点数',
|
||||
'boolean' => ':attribute必须是布尔值',
|
||||
'email' => ':attribute格式不符',
|
||||
'array' => ':attribute必须是数组',
|
||||
'accepted' => ':attribute必须是yes、on或者1',
|
||||
'date' => ':attribute格式不符合',
|
||||
'file' => ':attribute不是有效的上传文件',
|
||||
'image' => ':attribute不是有效的图像文件',
|
||||
'alpha' => ':attribute只能是字母',
|
||||
'alphaNum' => ':attribute只能是字母和数字',
|
||||
'alphaDash' => ':attribute只能是字母、数字和下划线_及破折号-',
|
||||
'activeUrl' => ':attribute不是有效的域名或者IP',
|
||||
'chs' => ':attribute只能是汉字',
|
||||
'chsAlpha' => ':attribute只能是汉字、字母',
|
||||
'chsAlphaNum' => ':attribute只能是汉字、字母和数字',
|
||||
'chsDash' => ':attribute只能是汉字、字母、数字和下划线_及破折号-',
|
||||
'url' => ':attribute不是有效的URL地址',
|
||||
'ip' => ':attribute不是有效的IP地址',
|
||||
'dateFormat' => ':attribute必须使用日期格式 :rule',
|
||||
'in' => ':attribute必须在 :rule 范围内',
|
||||
'notIn' => ':attribute不能在 :rule 范围内',
|
||||
'between' => ':attribute只能在 :1 - :2 之间',
|
||||
'notBetween' => ':attribute不能在 :1 - :2 之间',
|
||||
'length' => ':attribute长度不符合要求 :rule',
|
||||
'max' => ':attribute长度不能超过 :rule',
|
||||
'min' => ':attribute长度不能小于 :rule',
|
||||
'after' => ':attribute日期不能小于 :rule',
|
||||
'before' => ':attribute日期不能超过 :rule',
|
||||
'expire' => '不在有效期内 :rule',
|
||||
'allowIp' => '不允许的IP访问',
|
||||
'denyIp' => '禁止的IP访问',
|
||||
'confirm' => ':attribute和确认字段:2不一致',
|
||||
'different' => ':attribute和比较字段:2不能相同',
|
||||
'egt' => ':attribute必须大于等于 :rule',
|
||||
'gt' => ':attribute必须大于 :rule',
|
||||
'elt' => ':attribute必须小于等于 :rule',
|
||||
'lt' => ':attribute必须小于 :rule',
|
||||
'eq' => ':attribute必须等于 :rule',
|
||||
'unique' => ':attribute已存在',
|
||||
'regex' => ':attribute不符合指定规则',
|
||||
'method' => '无效的请求类型',
|
||||
'token' => '令牌数据无效',
|
||||
'fileSize' => '上传文件大小不符',
|
||||
'fileExt' => '上传文件后缀不符',
|
||||
'fileMime' => '上传文件类型不符',
|
||||
|
||||
'require' => ':attribute require',
|
||||
'number' => ':attribute must be numeric',
|
||||
'integer' => ':attribute must be integer',
|
||||
'float' => ':attribute must be float',
|
||||
'boolean' => ':attribute must be bool',
|
||||
'email' => ':attribute not a valid email address',
|
||||
'mobile' => ':attribute not a valid mobile',
|
||||
'array' => ':attribute must be a array',
|
||||
'accepted' => ':attribute must be yes,on or 1',
|
||||
'date' => ':attribute not a valid datetime',
|
||||
'file' => ':attribute not a valid file',
|
||||
'image' => ':attribute not a valid image',
|
||||
'alpha' => ':attribute must be alpha',
|
||||
'alphaNum' => ':attribute must be alpha-numeric',
|
||||
'alphaDash' => ':attribute must be alpha-numeric, dash, underscore',
|
||||
'activeUrl' => ':attribute not a valid domain or ip',
|
||||
'chs' => ':attribute must be chinese',
|
||||
'chsAlpha' => ':attribute must be chinese or alpha',
|
||||
'chsAlphaNum' => ':attribute must be chinese,alpha-numeric',
|
||||
'chsDash' => ':attribute must be chinese,alpha-numeric,underscore, dash',
|
||||
'url' => ':attribute not a valid url',
|
||||
'ip' => ':attribute not a valid ip',
|
||||
'dateFormat' => ':attribute must be dateFormat of :rule',
|
||||
'in' => ':attribute must be in :rule',
|
||||
'notIn' => ':attribute be notin :rule',
|
||||
'between' => ':attribute must between :1 - :2',
|
||||
'notBetween' => ':attribute not between :1 - :2',
|
||||
'length' => 'size of :attribute must be :rule',
|
||||
'max' => 'max size of :attribute must be :rule',
|
||||
'min' => 'min size of :attribute must be :rule',
|
||||
'after' => ':attribute cannot be less than :rule',
|
||||
'before' => ':attribute cannot exceed :rule',
|
||||
'expire' => ':attribute not within :rule',
|
||||
'allowIp' => 'access IP is not allowed',
|
||||
'denyIp' => 'access IP denied',
|
||||
'confirm' => ':attribute out of accord with :2',
|
||||
'different' => ':attribute cannot be same with :2',
|
||||
'egt' => ':attribute must greater than or equal :rule',
|
||||
'gt' => ':attribute must greater than :rule',
|
||||
'elt' => ':attribute must less than or equal :rule',
|
||||
'lt' => ':attribute must less than :rule',
|
||||
'eq' => ':attribute must equal :rule',
|
||||
'unique' => ':attribute has exists',
|
||||
'regex' => ':attribute not conform to the rules',
|
||||
'method' => 'invalid Request method',
|
||||
'token' => 'invalid token',
|
||||
'fileSize' => 'filesize not match',
|
||||
'fileExt' => 'extensions to upload is not allowed',
|
||||
'fileMime' => 'mimetype to upload is not allowed',
|
||||
];
|
||||
|
||||
// 当前验证场景
|
||||
@@ -847,7 +847,11 @@ class Validate
|
||||
}
|
||||
|
||||
$pk = strval(isset($rule[3]) ? $rule[3] : $db->getPk());
|
||||
if (isset($rule[2])) {
|
||||
if(is_array($pk)){
|
||||
foreach($pk as $key){
|
||||
$map[$key] = ['neq',]
|
||||
}
|
||||
}elseif (isset($rule[2])) {
|
||||
$map[$pk] = ['neq', $rule[2]];
|
||||
} elseif (isset($data[$pk])) {
|
||||
$map[$pk] = ['neq', $data[$pk]];
|
||||
@@ -1233,11 +1237,13 @@ class Validate
|
||||
} elseif (0 === strpos($type, 'require')) {
|
||||
$msg = self::$typeMsg['require'];
|
||||
} else {
|
||||
$msg = $title . '规则错误';
|
||||
$msg = $title . Lang::get('not conform to the rules');
|
||||
}
|
||||
|
||||
if (is_string($msg) && 0 === strpos($msg, '{%')) {
|
||||
$msg = Lang::get(substr($msg, 2, -1));
|
||||
}elseif(Lang::has($msg)){
|
||||
$msg = Lang::get($msg);
|
||||
}
|
||||
|
||||
if (is_string($msg) && is_scalar($rule) && false !== strpos($msg, ':')) {
|
||||
|
||||
Reference in New Issue
Block a user