Angular Nebular nbInput - 将掩码添加到输入字段
Angular Nebular nbInput - Add mask into input fields
我需要在输入文本字段(phone、日期、电子邮件等)中添加掩码。
我正在使用 Angular 和 Nebular 5.0.0, and according to the official documentation,没有可用的掩码属性。
我曾尝试按如下方式添加 ngx-mask-version(8.1.7),但没有成功。
<input type="text" nbInput mask="(00)00000-0000" class="form-control" [(ngModel)]="model.phone" name="phone">
是否可以集成ngx-mask和Nebular nbInput组件?如果不可能,我怎样才能在我的输入字段中添加掩码?
问题已解决,问题出在我的环境上。
我需要删除 node_modules 文件夹并重新构建项目。
我需要在输入文本字段(phone、日期、电子邮件等)中添加掩码。
我正在使用 Angular 和 Nebular 5.0.0, and according to the official documentation,没有可用的掩码属性。
我曾尝试按如下方式添加 ngx-mask-version(8.1.7),但没有成功。
<input type="text" nbInput mask="(00)00000-0000" class="form-control" [(ngModel)]="model.phone" name="phone">
是否可以集成ngx-mask和Nebular nbInput组件?如果不可能,我怎样才能在我的输入字段中添加掩码?
问题已解决,问题出在我的环境上。 我需要删除 node_modules 文件夹并重新构建项目。