• [React] Validate React Forms with Formik and Yup


    Validating forms in React can take several lines of code to build. However, Formik's ErrorMessage component and Yup simplify that process.

    import { ErrorMessage, Field, Form, Formik } from 'formik';
    import React from 'react';
    import { render } from 'react-dom';
    import './index.css';
    import ItemList from './ItemList';
    import * as Yup from 'yup';
    
    const initialValues = {
      item: '',
    };
    
    const validationSchema = Yup.object().shape({
      item: Yup.string().required('Item name is required'),
    });
    
    const App = () => {
      const [items, setItems] = React.useState([]);
    
      return (
        <React.Fragment>
          <h2>Regular Maintenance:</h2>
          <ItemList items={items} />
          <Formik
            initialValues={initialValues}
            validationSchema={validationSchema}
            onSubmit={values => {
              setItems([...items, values.item]);
            }}
          >
            <Form>
              <label htmlFor="item">Item:</label>
              <Field type="text" name="item" />
              <ErrorMessage name="item" />
              <button type="submit">Add Item</button>
            </Form>
          </Formik>
        </React.Fragment>
      );
    };
    
    export default App;
    
    render(<App />, document.getElementById('root'));
  • 相关阅读:
    只允许在input框输入文字,不能输入数字和其他字符
    阻止用户在input框输入数字
    centos 7.2安装和配置MongoDB
    Python基础
    Python小练习008
    Python小练习007
    Python小练习006
    Python错误集锦
    Python和MongoDB
    MongoDB笔记
  • 原文地址:https://www.cnblogs.com/Answer1215/p/10644305.html
Copyright © 2020-2023  润新知