我在我的角度应用程序中使用ngx-quill编辑器。我想确保在提交表单之前填写此表单字段。当我尝试添加
[require]="true"
...并通过提交一个空字段对此进行测试,该控件显示该字段仍为“有效”。
这是html片段:
<div class="form-group" style="margin-top: 20px">
<quill-editor #quill="ngModel" [style]="{height: '420px'}" [(ngModel)]="blogPost.content" name="content" [minLength]="1"
[required]="true"></quill-editor>
</div>