“Ref dalam komponen fungsional” Kode Jawaban

Ref dalam komponen fungsional

function CustomTextInput(props) {
  // textInput must be declared here so the ref can refer to it  const textInput = useRef(null);  
  function handleClick() {
    textInput.current.focus();  }

  return (
    <div>
      <input
        type="text"
        ref={textInput} />      <input
        type="button"
        value="Focus the text input"
        onClick={handleClick}
      />
    </div>
  );
}
Cheerful Cat

Ref dalam komponen fungsional

function MyFunctionComponent() {  return <input />;
}

class Parent extends React.Component {
  constructor(props) {
    super(props);
    this.textInput = React.createRef();  }
  render() {
    // This will *not* work!
    return (
      <MyFunctionComponent ref={this.textInput} />    );
  }
}
Cheerful Cat

Jawaban yang mirip dengan “Ref dalam komponen fungsional”

Pertanyaan yang mirip dengan “Ref dalam komponen fungsional”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya