反应引用传递给Redux

时间:2017-11-24 15:34:51

标签: react-redux

我想知道是否有任何适当的方法可以将组件引用传递给Redux的另一个组件。我知道我们可以使用公开的参考文献



function CustomTextInput(props) {
  return (
    <div>
      <input ref={props.inputRef} />
    </div>
  );
}

function Parent(props) {
  return (
    <div>
      My input: <CustomTextInput inputRef={props.inputRef} />
    </div>
  );
}


class Grandparent extends React.Component {
  render() {
    return (
      <Parent
        inputRef={el => this.inputElement = el}
      />
    );
  }
}
&#13;
&#13;
&#13;

但有没有办法我们可以用Redux做到这一点,这也是最好的方法 - 公开引用或传递给redux的引用

0 个答案:

没有答案