什么是反应javascript中的proc和方法?

前端之家收集整理的这篇文章主要介绍了什么是反应javascript中的proc和方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从 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}/>
    }
  }
}

解决方法

this.proc指的是方法
proc(wrappedComponentInstance) {
  wrappedComponentInstance.method()
}

wrappedComponentInstance.method()只是如何在包装组件上调用任意方法的一个示例.文章说:

In the following example we explore how to access instance methods and the instance itself of the WrappedComponent via refs

所以,两者都没有与React有任何关系.

原文链接:https://www.f2er.com/js/158671.html

猜你在找的JavaScript相关文章