我有一个像这样的被动形式:
<form [formGroup]="loginForm" (ngSubmit)="onLogInFormSubmit($event)">
<input type="email" formControlName="email" placeholder="Email">
<input type="password" formControlName="pwd" placeholder="Password">
<button
ion-button
type="submit"
color="green"
class="btn btnAuth"
>LOG IN</button>
</form>
现在我想按下提交按钮检查我的表格是否有效以及是否不能提交。
我已经在onLogInFormSubmit($event)
内向return false
和preventDefault()
尝试了这次活动,但这项工作都没有。
难以阻止提交操作或我遗失了什么?
PS。我的表单已在我的.ts文件中正确初始化。