将不受控制的组件从:类扩展为功能组件?

Posted

技术标签:

【中文标题】将不受控制的组件从:类扩展为功能组件?【英文标题】:Convert Uncontrolled Components from : Class extends to Functional Components? 【发布时间】:2021-10-04 10:44:10 【问题描述】:

我在将 Uncontrolled Components 从类组件转换为功能组件时遇到了麻烦...

类组件:

import React from 'react';

class NameForm extends React.Component 
  constructor(props) 
    super(props);
    this.handleSubmit = this.handleSubmit.bind(this);
    this.input = React.createRef();
  

  handleSubmit(event) 
    console.log('A name was submitted: ' + this.input.current.value);
    event.preventDefault();
  

  render() 
    return (
      <form onSubmit=this.handleSubmit>
        <label>
          Name:
          <input type="text" ref=this.input />
        </label>
        <input type="submit" value="Submit" />
      </form>
    );
  

export default NameForm;

我想转换成功能组件。像这样的东西:

import React,useState,useEffect from 'react';

function App() 

const[inputText,setinputText] = useState();
//Rest of codes here::

return (
      <form onSubmit=this.handleSubmit>
        <label>
          Name:
          <input type="text" ref=this.input />
        </label>
        <input type="submit" value="Submit" />
      </form>
    );

export default App;

我真的不知道转换构造函数..请任何人帮助我。

【问题讨论】:

你在类组件中没有state,你需要吗? 【参考方案1】:

可以这样做:

import React from "react";

const NameForm = () => 
  const inputRef = React.useRef();

  const handleSubmit = (event) => 
    event.preventDefault();
    console.log("A name was submitted: " + inputRef.current.value);        
  ;

  return (
    <form onSubmit=handleSubmit>
      <label>
        Name:
        <input type="text" ref=inputRef />
      </label>
      <input type="submit" value="Submit" />
    </form>
  );
;

export default NameForm;

【讨论】:

以上是关于将不受控制的组件从:类扩展为功能组件?的主要内容,如果未能解决你的问题,请参考以下文章

受控组件与不受控制的组件有什么区别?

React Native - 使用 ref 的 TextInput 值(不受控制的组件)

受控组件( controlled component )与不受控制的组件( uncontrolled component )区别

React-Mobx 警告:组件正在更改不受控制的输入

javascript 不受控制的组件

markdown 反应受控和不受控制的组件