You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1、MaskService中没有getMask()接口
2、isValue()并不是像文档所写的那样具有的功能,它在大多数类型中只是进行了简单的比较
2.1在zip-code类型 console.log(MaskService.isValid('zip-code','123456789',{}));//true
value (String, required): the value to be masked
value长度本来应该为8,但是在isValid接口中只有长度为9,返回值才为true。
2.2money类型
所有的入参都为true,源码是直接返回的true
2.3custom、credit-card、cpf、cnpj、celphone都是一直返回false
3、对于isValue()能不能具体解释一下作用,以及用法。它在每个类型里面用法都不一样
The text was updated successfully, but these errors were encountered:
1、MaskService中没有getMask()接口
2、isValue()并不是像文档所写的那样具有的功能,它在大多数类型中只是进行了简单的比较
2.1在zip-code类型
console.log(MaskService.isValid('zip-code','123456789',{}));//true
value (String, required): the value to be masked
value长度本来应该为8,但是在isValid接口中只有长度为9,返回值才为true。
2.2money类型
所有的入参都为true,源码是直接返回的true
2.3custom、credit-card、cpf、cnpj、celphone都是一直返回false
3、对于isValue()能不能具体解释一下作用,以及用法。它在每个类型里面用法都不一样
The text was updated successfully, but these errors were encountered: