输入多个邮件 ID 并用 ';' 分隔和flex中的验证
我正在创建一个表格。表单的某些字段将所有这些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以用逗号(或您决定使用的任何分隔符)拆分字段中的值(使用标准字符串拆分),然后对每个拆分的字符串(电子邮件 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).
这是对上面标记为正确的答案的补充:
https://wimdeblauwe.wordpress.com/2011/02/07/validation-of-multiple-email-addresses-in-flex/
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/