- 文档
开始使用
- 工具类
array 数组,树,扁平,分组,去重 browser Cookie、Copy、DOM 等 date-time 日期时间转换 decorator 装饰器 form 响应式表单校验 format 字符,校验,货币,掩码 math 范围、四舍五入 other 深获取、拷贝、合并、延迟、断言 token Token
- 管道
currency 货币管道 filter 过滤数组 format 掩码
匹配两个控件值,例如:
this.form = new FormGroup({
pwd: new FormControl(''),
repwd: new FormControl(''),
}, {
validators: MatchControl('pwd', 'repwd'),
});
一套用于响应式表单的验证器,包含:
_Validators.num
是否为数字
_Validators.int
是否为整数
_Validators.decimal
是否为小数点数值
_Validators.idCard
是否为中华人民共和国居民身份证
_Validators.mobile
是否为手机号(中国)
_Validators.url
是否URL地址
_Validators.ip4
是否IP地址(支持v4、v6)
_Validators.color
是否颜色代码值
_Validators.chinese
是否中文
每一个验证型都包括着用于表单验证器:
this.valForm = fb.group({
// 手机号
mobile: [null, Validators.compose([Validators.required, _Validators.mobile])]
});