问题描述: 在Angular 9中使用ngx-mask库时,无法动态更新输入框的掩码。
解决方法:
npm install ngx-mask --save
import { NgxMaskModule } from 'ngx-mask';
@NgModule({
imports: [
NgxMaskModule.forRoot()
]
})
export class AppComponent {
inputValue: string;
maskValue: string;
constructor() {
this.inputValue = '';
this.maskValue = '';
}
updateMask() {
if (someCondition) {
this.maskValue = '(000) 000-0000';
} else {
this.maskValue = '000-000-0000';
}
}
}
在上面的示例中,根据条件设置不同的掩码,并将输入框的值与组件中的变量inputValue进行双向绑定。当条件发生变化时,调用updateMask函数来更新掩码。
通过以上步骤,就可以在Angular 9中动态更新ngx-mask的掩码了。