我从
article开始学习HOC,但之前没有看过proc和方法.这些是指什么?
function refsHOC(WrappedComponent) { return class RefsHOC extends React.Component { proc(wrappedComponentInstance) { wrappedComponentInstance.method() } render() { const props = Object.assign({},this.props,{ref: this.proc.bind(this)}) return <WrappedComponent {...this.props}/> } } }