1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| import * as React from "react"; import Form, {FormValue} from "./form"; import {useState, Fragment} from "react"; import Validator from "./validator";
const FormExample:React.FunctionComponent = ()=>{ const [formData,setFormData] = useState<FormValue>({ username:'aaa', password:'111' }) const [fields] = useState([ {name:'username',label:'用户名',input:{type:'text'}}, {name:'password',label:'密码',input:{type:'password'}}, ])
const onSubmit = (e:React.FormEvent<HTMLFormElement>)=>{ console.log(formData) const rules = [ {key: 'username',required: true }, {key: 'username',minLength: 3 , maxLength:16 }, {key: 'username',pattern: /^[A-Za-z0-9]+$/}, ] const errors = Validator(formData,rules); console.log(errors) }
return ( <div> <Form value={formData} fields={fields} buttons={ <Fragment> <button>提交</button> <button>返回</button> </Fragment> } onChange={(newValue) => setFormData(newValue)} onSubmit={onSubmit} /> </div> ) }
export default FormExample;
|