我在验证角度7输入模式中的空白时遇到问题。
<form #f="ngForm">
<mat-form-field floatLabel="always">
<input type="text" pattern="[a-zA-Z0-9_-\s]+" required matInput name="folderName">
</mat-form-field>
</form>
<button mat-raised-button [disabled]="!f.valid">Create</button>
我尝试过:
我错了吗?