# jc-form 表单验证 > 内置 ```required```, ```max```, ```min```, ```validator```, ```pattern```规则 > > required 支持空字符串,空数组,空对象的检查 > > max和min成对出现即检测区间,只有min时候为最小值,max时为最大值 > > 包含 jc-form, jc-form-item, jc-form-rule 组件 > > 支持toast提示 > > 支持逐个验证和全部验证 > > 已支持rules用在 ```jc-form```组件上 #### 使用 ```js ``` ```html ``` ### jc-form > props 参数 | 类型 | 默认值 | 说明 --- | --- | --- | --- model | - | - | 表单model rules | Object | - | 验证规则 checkAll | [Boolean, Number, String] | true | 是否验证所有 showError | Boolean | true | 是否显示错误信息 toastError | Boolean | false | toast提示错误信息 errorStyle | Object | { fontSize: '24rpx', color: 'RGB(234, 88, 11)', margin: '10rpx 0' } | 错误提示样式 itemStyle | Object | - | formItem样式 itemContentStyle | Object | - | formItem Content样式 boldLable | Boolean | false | 加粗label border | Boolean | true | 是否有下边框 > slot 名称 | scope | 说明 --- | --- | --- default | - | - > emit 事件名称 | 说明 --- | --- | reset | 重置验证 > expose 名称 | 类型 | 说明 --- | --- | --- | validate | Function | 验证表单 reset | Function | 重置验证信息 --- ### jc-form-item > props 参数 | 类型 | 默认值 | 说明 --- | --- | --- | --- label | String | - | 显示的标题 prop | String | - | 表单对象 rules | Array | [] | 验证规则 required | [Boolean, Number, String] | false | 是否必填 align | String | left | 水平方向 left,right direction | String | row | 水平方向 row,col border | Boolean | true | 是否有下边框 > slot 名称 | scope | 说明 --- | --- | --- default | - | - label-desc | - | label * 后面 label-right | - | label 右侧 > emit 无 --- ### jc-form-rule > props 参数 | 类型 | 默认值 | 说明 --- | --- | --- | --- value | - | - | 验证对象 rules | Array | [] | 验证规则 lazy | Boolean | true | 懒验证 > slot 名称 | scope | 说明 --- | --- | --- default | - | - > emit 事件名称 | 说明 --- | --- | error | 错误 事件 > expose 名称 | 类型 | 说明 --- | --- | --- | valid | 变量 | 验证状态 error | 变量 | 错误信息 dirty | 变量 | 是否污染 check | Function | 开始验证 reset | Function | 重置验证 getState | Function | 获取valid, error, dirty