angular2-directives – Angular 2多个自定义值访问器

我正在使用angular2创建一个应用程序.

我需要使用日历弹出窗口从用户输入获取日期,但是我需要在用户输入上放置一个掩码,以便在他输入时保持这种格式dd-mm-YYYY.

我使用两个不同的模块,我从web ng-bootstrap和angular2-text-mark获得

<input [textMask]="{mask: mask}" type="text" class="form-control" placeholder="yyyy-mm-dd"
         name="dp" [(ngModel)]="date" ngbDatepicker #d="ngbDatepicker">

当我在同一个标​​签上使用textMask和ngbDatepicker时,我收到此错误

ERROR: More than one custom value accessor matches form control with unspecified name attribute.

有没有办法做这种事情?

谢谢

最佳答案 我遇到了同样的问题.我使用了“带掩码的ngx-datepicker”.我从输入中删除了ngModel,它工作得非常好.

点赞