【问题标题】:Angular validation is not working in bootstrap modal popup角度验证在引导模式弹出窗口中不起作用
【发布时间】:2020-02-11 12:26:17
【问题描述】:

我有表单,并且正在打开的表单是引导模式弹出窗口,但角度验证在该模式弹出窗口中不起作用。

提前致谢

【问题讨论】:

  • 发生了什么错误
  • 验证未触发
  • 请分享您的代码或创建一个演示。
  • 如何制作demo?

标签: bootstrap-4 angular8


【解决方案1】:

这里是验证码 sn-p,您可以查看附加链接以获取详细信息:

this.registerForm = this.formBuilder.group({
    email: ['', [Validators.required, Validators.email]],
    password: ['', [Validators.required, Validators.minLength(6)]]
});

https://therichpost.com/angular-8-bootstrap-popup-login-form/

谢谢

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2016-07-30
    • 2016-01-26
    • 1970-01-01
    • 2014-12-21
    • 1970-01-01
    相关资源
    最近更新 更多