“Ref w elementach funkcjonalnych” Kod odpowiedzi

Ref w elementach funkcjonalnych

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 w elementach funkcjonalnych

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

Odpowiedzi podobne do “Ref w elementach funkcjonalnych”

Pytania podobne do “Ref w elementach funkcjonalnych”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu