Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ariesjia/react-use-form

Repository files navigation

rc-use-form

manage form state use React Hooks. https://ariesjia.github.io/react-use-form/

NPM Build Status

Install

// use yarn
yarn add rc-use-form
// use npm
npm install rc-use-form

Demo

simple

import useForm from 'rc-use-form';
const Demo = () => {
 const [form, field] = useForm({
 name: '',
 password: ''
 })
 
 const handleSubmit = (event) => {
 event.preventDefault()
 console.log(form.value)
 }
 
 return (
 <div>
 <form onSubmit={handleSubmit}>
 <div>
 <label>username</label>
 <input type="text" {...field("name")}/>
 </div>
 <div>
 <label>password</label>
 <input type="password" {...field("password")} />
 </div>
 <button type='submit'>submit</button>
 </form>
 </div>
 )
}

validate

import useForm from 'rc-use-form';
const Demo = () => {
 const [form, field] = useForm({
 name: '',
 password: ''
 })
 
 const handleSubmit = (event) => {
 event.preventDefault()
 form.validate((errors) => {
 if(!errors) {
 console.log(form.value)
 alert('submit')
 }
 })
 }
 
 return (
 <div>
 <form onSubmit={handleSubmit}>
 <div>
 <label>username</label>
 <input type="text" {...field("name", {
 rules: [{type: "string", required: true}]
 })}
 />
 {
 form.errors.name && <div>
 {form.errors.name[0].message}
 </div>
 }
 </div>
 <div>
 <label>password</label>
 <input type="password" {...field("password", {
 rules: [{type: "string", required: true}]
 })}
 />
 {
 form.errors.password && <div>
 {form.errors.password[0].message}
 </div>
 }
 </div>
 <button type='submit'>submit</button>
 </form>
 </div>
 )
}

form

  • value: The form data
  • touched: The field had been changed by user
  • errors: The form validate errors
  • validate: The form validate function
  • getValue: The form getValue function, always return current value

field

field(name, [options])
  • name: The field field (required).

Options

About

manage form state use React Hooks

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /