Flex 密码字段检查

发布于 2024-09-13 11:11:38 字数 55 浏览 1 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

夜雨飘雪 2024-09-20 11:11:38

创建一个包含两个字段和一个提交按钮的自定义组件。 (还有您可能需要的任何验证器。)除非两个字段都经过验证并且相同,否则不要启用提交按钮。

基本上,只需将第一个 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 the displayAsPassword property of each is set to true as well, so it will just show bullets instead of characters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文