输入多个邮件 ID 并用 ';' 分隔和flex中的验证

发布于 2024-12-07 22:21:49 字数 85 浏览 0 评论 0原文

我正在创建一个表格。表单的某些字段将所有这些 ID 存储到一个以逗号或分号分隔的字段中。如何发送邮件 ID 进行电子邮件验证,默认情况下由 Flex 提供。

I was creating a form. Certian fields of the form store all of those IDs to a single field separated by a comma or semicolon. how to send the mail id's for email validation which is providing by flex by default.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

江南月 2024-12-14 22:21:49

您可以用逗号(或您决定使用的任何分隔符)拆分字段中的值(使用标准字符串拆分),然后对每个拆分的字符串(电子邮件 ID)使用电子邮件验证器。

You can split the values in the field (using a standard string split) on comma (or whatever separator you decide to use), and then use the email validator for each of the splitted string (email Ids).

多彩岁月 2024-12-14 22:21:49

这是对上面标记为正确的答案的补充:

https://wimdeblauwe.wordpress.com/2011/02/07/validation-of-multiple-email-addresses-in-flex/

对于我们的 Flex 应用程序,我有一个可以处理的“cc”字段
多个电子邮件地址。添加验证时,我首先使用
标准 EmailValidator 类。然而,这不会很快起作用
您想要添加多个电子邮件地址,例如:
[电子邮件受保护];[电子邮件受保护]

This is in addition to the answer marked as correct above:

https://wimdeblauwe.wordpress.com/2011/02/07/validation-of-multiple-email-addresses-in-flex/

For our flex application, I had a ‘cc’ field that could handle
multiple email addresses. When adding validation, I first used the
standard EmailValidator class. However, this would not work as soon as
you want to add multiple email addresss, like:
[email protected];[email protected]

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