输入您的密码
<input matInput id="signup-credentials-password" type="text" style="color: #999999; font-size: 16px;"
#passwordSignup minlength="5" [type]="hide ? 'password' : 'text'">
在ts文件中,您可以按如下方式设置password
:
...
'password': new FormControl(null, [Validators.required, Validators.minLength(4)])
...
您可以在此页面上找到一个示例===>https://stackblitz.com/edit/angular-reactive-forms-bn9ecb