Giter Club home page Giter Club logo

antd-form-demo's Introduction

Zhongjie-chen's github stats

antd-form-demo's People

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

834640725

antd-form-demo's Issues

使用setFields 以后, isFieldTouched('username')的值会从true变成undefined。从而导致没有error显示

    const userNameError = isFieldTouched('username') && getFieldError('username');
<Form className={styles._}>
          <FormItem
            label="用户名"
            validateStatus={userNameError ? 'error' : ''}
            help={userNameError || ''}
          >
            {getFieldDecorator('username', {
              rules: [
                { required: true, message: '请输入用户名' },
                { pattern: /^[a-z0-9]+$/, message: '小写英文字母和数字,e.g. liuyang03' }],
            })(
              <Input type="text" placeholder="请输入用户名" autoComplete="off" />,
            )}
          </FormItem>
          <FormItem>
            <Button
               type="primary" 
               htmlType="button" 
               disabled={hasErrors(getFieldsError())}
               onClick={this.handleSubmit}>修改密码
             </Button>
          </FormItem>
        </Form>

 handleSubmit() {
    this.props.form.validateFields((err) => {
      if (!err) {
        this.props.form.setFields({
          username: {
            value: '',
            errors: [new Error('error')],
          },
        });
      }
    });
  }

使用setFields 以后, isFieldTouched('username')的值会从true变成undefined。从而导致没有error显示。麻烦大神赐教?感谢

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.