Flex 密码字段检查
我正在使用 Flex 进行编程。我希望有两个密码字段,并验证它们是否包含相同的密码。我该怎么做?
I'm programming in Flex. I wish to have two password fields, and validate that they contain the same password. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个包含两个字段和一个提交按钮的自定义组件。 (还有您可能需要的任何验证器。)除非两个字段都经过验证并且相同,否则不要启用提交按钮。
基本上,只需将第一个
TextInput
字段的文本属性与第二个字段的文本属性进行比较即可。还要确保每个验证都达到一定的长度。确保每个的displayAsPassword
属性也设置为 true,这样它只会显示项目符号而不是字符。Create a custom component with two fields and a submit button. (Also any validators you might need.) Don't enable the submit button unless both fields validate and are identical.
Basically, just compare the text property of the first
TextInput
field to the text property of the second. Also make sure each validates to a certain length. Make sure thedisplayAsPassword
property of each is set to true as well, so it will just show bullets instead of characters.