0

1 つのコンポーネント (modalBox.js) に ref を含むテキスト ボックスがあります。ボタンのクリック時に (index.js) のような別のコンポーネントのテキスト ボックスの値にアクセスするにはどうすればよいですか?

4

3 に答える 3

0

反応のrefForwardingを確認してください。 https://reactjs.org/docs/forwarding-refs.html

于 2019-12-04T06:55:33.110 に答える
0
const MyComponent = React.forwardRef((props, ref) => (
  <button ref={ref}>
    Click me
  </button>
));


const ref = React.createRef();
<MyComponent ref={ref}>Click me!</MyComponent>;
于 2019-12-04T09:29:31.380 に答える