使用extendsReact.Component机制正确创建antd Form

Correctly creating an antd Form using the extends React.Component mechanism

我正在尝试重现 https://github.com/ant-design/ant-design/blob/master/components/form/demo/horizontal-login.md

中的 antd 表单示例

用 extends React.Component 替换 React.createClass 但我收到一个 Uncaught TypeError: Cannot read 属性 'getFieldDecorator' of undefined

使用以下代码:

import { Form, Icon, Input, Button } from 'antd';
const FormItem = Form.Item;

export default class HorizontalLoginForm extends React.Component {
    constructor(props) {
        super(props);
    }

  handleSubmit(e) {
    e.preventDefault();
    this.props.form.validateFields((err, values) => {
      if (!err) {
        console.log('Received values of form: ', values);
      }
    });
  },
  render() {
    const { getFieldDecorator } = this.props.form;
    return (
      <Form inline onSubmit={this.handleSubmit}>
        <FormItem>
          {getFieldDecorator('userName', {
            rules: [{ required: true, message: 'Please input your username!' }],
          })(
            <Input addonBefore={<Icon type="user" />} placeholder="Username" />
          )}
        </FormItem>
        <FormItem>
          {getFieldDecorator('password', {
            rules: [{ required: true, message: 'Please input your Password!' }],
          })(
            <Input addonBefore={<Icon type="lock" />} type="password" placeholder="Password" />
          )}
        </FormItem>
        <FormItem>
          <Button type="primary" htmlType="submit">Log in</Button>
        </FormItem>
      </Form>
        )
    }
}

看起来缺少的 Form.create 部分是导致问题的原因,但不知道它适合使用扩展机制的位置。

我怎样才能正确地做到这一点?

当您希望将表单 class 包含在父组件中时,您必须首先创建表单,例如在父组件 render 方法中:

    ...

    render() {
        ...

        const myHorizontalLoginForm = Form.create()(HorizontalLoginForm);
        ...
          return (
          ...
          <myHorizontalLoginForm />
          )
    }

请务必在父 class 中导入 Horizo​​ntalLoginForm class。

可以学习官方例子:https://ant.design/components/form/#components-form-demo-advanced-search

@vladimirp 在 render 中调用 Form.create 不好。

@vladimirimp 在正确的轨道上,但选择的答案有 2 个问题。

  1. 不应在渲染方法中调用高阶组件(例如Form.create())。
  2. JSX 要求用户定义的组件名称(例如 myHorizontalLoginForm)以大写字母开头。

要解决这个问题,我们只需要更改 HorizontalLoginForm:

的默认导出
class HorizontalLoginForm extends React.Component { /* ... */ }

export default Form.create()(HorizontalLoginForm);

那么我们可以直接使用HorizontalLoginForm,而不需要将它设置为一个新的变量。 (但如果你确实将它设置为一个新变量,你会想将该变量命名为 MyHorizontalLoginForm 或任何其他以大写字母开头的变量)。