代码之家  ›  专栏  ›  技术社区  ›  Anita

在Redux表单中输入时关注下一个输入字段

  •  0
  • Anita  · 技术社区  · 6 年前

    我想定义一个HOC(高阶组件),它将负责处理功能。

    const NextFieldOnEnter = WrappedContainer =>
      class extends Component {
        componentDidMount() {
          console.log('hoc', this.refs);
          //move to next input field
        }
        render() {
          return <WrappedContainer {...this.props} />;
        }
      };
    export default NextFieldOnEnter;
    

    上面写着 本参考文献已弃用 . 那么我该如何实现呢 标签 喜欢什么时候的行为 进入 我的表格是

    <Form>
    <Field
      withRef
      hasFeedback
      name="name"
      ref={ref => {
        this.field1 = ref;
      }}
      refField = "field1"
      component={makeField}
      type="date"
    />  
    <Field
        withRef
        hasFeedback
        name="address"
        ref={ref => {
          this.field2 = ref;
        }}
         refField ="field2"
        component={makeField}
        type="date"
      />
    </Form>
    

    //马克菲尔德

    render() {
      const {type, input, label, ref, refField, ...rest} = this.props;
      return (
        <Form.Item
          label={label}
          colon={false}
          type={type}
          value={value}
          ref={ref}
        >
          <Input {...props} />
        </Form.Item>
      );
    }
    
    2 回复  |  直到 6 年前
        1
  •  1
  •   Adeel Imran    6 年前

    在构造函数方法中,如下定义ref

    constructor(props) {
      super(props);
      this.field1 = React.createRef();
      this.field2 = React.createRef();
    }
    

    ref 做这个。

    <Field
      withRef
      hasFeedback
      name="name"
      ref={this.field1} // Proper way to assign ref in react ver 16.4
      refField = "field1"
      component={makeField}
      type="date"
    />  
    

    参考 Refs Documentation React

        2
  •  1
  •   Hernán Albertario    5 年前


    我的表单和字段组件:
    什么时候? 到期日 字段处于活动状态,用户按下next键,焦点转到下一个名为 . 还有,什么时候 证券代码 正在提交 道具已定义。

    <Form>
      <Field
        name={'expirationDate'}
        component={renderInputRef}
        withRef
        forwardRef
        ref={componentRef => (this.expirationDate = componentRef)}
        refField="expirationDate"
        onEnter={() => {
            try {
            this.cvc.getRenderedComponent().refs.cvc._root.focus();
            } catch {
            /*Do nothing */
            }
        }}
        onChange={(event, newValue) => {
            try {
                if (newValue?.length == 5) {
                    this.cvc.getRenderedComponent().refs.cvc._root.focus();
                }
            } catch {
            /*Do nothing */
            }
        }}
      />
    
      <Field
        name={'securityCode'}
        component={renderInputRef}
        onSubmitEditing={!invalid ? handleSubmit(this.submit) : null}
        accessibilityLabel={'new-card-cvc'}
        keyboardType={'number-pad'}
        withRef
        forwardRef
        refField="cvc"
        ref={componentRef => (this.cvc = componentRef)}
      />
    </Form>
    

    以及 渲染输入 component:(在这个项目中,我们使用的是native base,但是没有它几乎是一样的。)

    export class renderInputRef extends PureComponent<Props> {
     render() {
      const {
        input,
        onEnter,
        refField,
        display,
        description,
        iconRight,
        meta: { touched, warning },
        ...custom
      } = this.props;
      var hasError = touched && (error !== undefined || warning !== undefined);
      return (
        <React.Fragment>
          <Item 
            withRef
            forwardRef
          >
            <Input
              ref={refField}
              returnKeyType={'next'}
              onSubmitEditing={onEnter}
              {...input}
              {...custom}
            />
          </Item>
        </React.Fragment>
      );
     }
    }
    
        3
  •  0
  •   xadm    6 年前

    你可以用 callback ref funtion 创建可用于在字段之间循环的引用数组。它将与16.2和更新版本一起工作。

    准备好后显示解决方案;)