We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
相关代码片段:
v := data.Create() v.AddTranslates(map[string]string{ "username":"账号", "password":"密码", "password2":"重复密码", }) v.StringRule("username", "required") v.StringRule("password", "required|eq_field:password2|minLen:6|max_len:32")
当password值不等于password2时,提示:密码 值必须等于该字段 password2,发现password2并没有使用设置的翻译名称:重复密码.
密码 值必须等于该字段 password2
重复密码
The text was updated successfully, but these errors were encountered:
4f070f2
inhere
No branches or pull requests
相关代码片段:
当password值不等于password2时,提示:
密码 值必须等于该字段 password2
,发现password2并没有使用设置的翻译名称:重复密码
.The text was updated successfully, but these errors were encountered: