1

lifecycle用来创建一个高阶组件。我需要访问包装的组件实例。我怎么才能得到它?

例如

export default function ajaxLoader(options) {
    return lifecycle({
        componentWillMount() {
            // how to get *wrapped* component instance here?
            // `this` refers to an instance of the lifecycle HOC, not the wrapped component
            // i.e., I want the instance of `SomeComponent`
        }
    }) // this returns a function that accepts a component *class*
}

以及用法,如果您也想看到:

class SomeComponent extends React.PureComponent {

    render() {
        return <span/>;
    }
}

const WrappedComponent = ajaxLoader({
    // options
})(SomeComponent);

render()如果我在我的 HOC 中覆盖该方法,并使用 渲染包装的组件,我可以获得对包装组件的引用ref=...,但recompose具体不会让我render自己实现该方法。

它支持整个组件 API,除了默认实现的 render() 方法(如果指定,则会被覆盖;错误将记录到控制台)。

4

1 回答 1

3

如果您必须有权访问实例方法,则可以执行以下操作:

class ParentComponent extends Component {
  constructor(props) {
    super(props);
    this.childController = null;
  }

  // access child method via this.childController.instanceMethod

  render() {
    return <DecoratedChildComponent provideController={controller => this.childController = controller} />
  }
}

class ChildComponent extends Component {
  componentDidMount() {
    this.props.provideController({
      instanceMethod: this.instanceMethod,
    })
  }

  componentWillUnmount() {
    this.props.provideController(null);
  }

  instanceMethod = () => {
    console.log("I'm the instance method");
  }
}

这有点令人费解,在大多数情况下可以避免,但是您确实需要访问实例方法,这将起作用

于 2017-08-14T20:25:15.323 回答