我的输入看起来像这样:我只想使用输入蒙版,而不是强制用户严格填充蒙版中的图案。

<input type="text" class="Enter Zipcode" placeholder="Enter Zipcode" mask="00000-0000" formControlName="zipcode">

默认情况下,似乎像documentation [validation] = true。但是应该以某种方式将验证更改为false。当我做的时候
<input type="text" class="Enter Zipcode" placeholder="Enter Zipcode" mask="00000-0000" formControlName="zipcode" [validation]="true">

ERROR Error: Uncaught (in promise): Error: Template parse errors:
Can't bind to 'validation' since it isn't a known property of 'input'. ("text" class="Enter Zipcode" placeholder="Enter Zipcode" mask="00000-0000" formControlName="zipcode" [ERROR ->][validation]="false">

Angular 抛出模板解析错误?

最佳答案

使用mask="99999-9999"。根据ngx-mask文档,0表示必需的数字字段,而9表示可选的数字字段。

关于javascript - Ngx-mask强制在生产中的输入字段上进行验证,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55466737/

10-09 23:23