submit 数据验证成功后回调事件 Function(e:Event)
this.form = this.$form.createForm(this, options);经过 Form.create 包装的组件将会自带 this.form 属性,this.form 提供的 API 如下:
validateFields((errors, values) => {
// …
});
validateFields([‘field1’, ‘field2’], (errors, values) => {
// …
});
validateFields([‘field1’, ‘field2’], options, (errors, values) => {
// …
});
使用 getFieldsValue getFieldValue setFieldsValue 等时,对应的 field 需要用 getFieldDecorator 或 v-decorator 注册过
validateStatus校验状态,如不设置,则会根据校验规则自动生成,可选:‘success’ ‘warning’ ‘error’ ‘validating’
help提示信息,如不设置,则会根据校验规则自动生成
slot-scope=“text, record, index, dataIndex”text:当前点击格子的数据
record:当前行的数据
index:行索引
dataIndex: 列数据在数据项中对应的 key
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)