反应:“ this”在组件函数中未定义


152
class PlayerControls extends React.Component {
  constructor(props) {
    super(props)

    this.state = {
      loopActive: false,
      shuffleActive: false,
    }
  }

  render() {
    var shuffleClassName = this.state.toggleActive ? "player-control-icon active" : "player-control-icon"

    return (
      <div className="player-controls">
        <FontAwesome
          className="player-control-icon"
          name='refresh'
          onClick={this.onToggleLoop}
          spin={this.state.loopActive}
        />
        <FontAwesome
          className={shuffleClassName}
          name='random'
          onClick={this.onToggleShuffle}
        />
      </div>
    );
  }

  onToggleLoop(event) {
    // "this is undefined??" <--- here
    this.setState({loopActive: !this.state.loopActive})
    this.props.onToggleLoop()
  }

我想loopActive在切换时更新状态,但this在处理程序中未定义对象。根据教程文档,我this应该引用该组件。我想念什么吗?

Answers:


211

ES6 React.Component不会自动将方法绑定到自身。您需要将自己绑定到构造函数中。像这样:

constructor (props){
  super(props);

  this.state = {
      loopActive: false,
      shuffleActive: false,
    };

  this.onToggleLoop = this.onToggleLoop.bind(this);

}

23
如果() => this.onToggleLoop在将onToggleLoop函数移入您的react类之后将onClick属性更改为,则它也将正常工作。
山姆

71
您真的必须绑定每个react类的每个方法吗?那不是有点疯狂吗?
亚历克斯L

6
@AlexL有一些方法可以不显式绑定方法。如果您使用babel,则可以将React组件上的每个方法声明为箭头函数。这里有示例:babeljs.io/blog/2015/06/07/react-on-es6-plus
Ivan,

7
但是为什么一开始就this没有定义?我知道thisJavascript取决于函数的调用方式,但是这里发生了什么?
特立独行'18

1
但是我该怎么办呢?直到构造函数之后才定义函数?如果我尝试在构造函数中执行此操作,即使您在类上定义了我的功能,也会得到“无法读取未定义的属性'bind'的信息” :(
rex

86

有两种方法。

一种是添加 this.onToggleLoop = this.onToggleLoop.bind(this);构造函数。

另一个是箭头功能 onToggleLoop = (event) => {...}

然后是onClick={this.onToggleLoop.bind(this)}


1
为什么onToogleLoop =()=> {}起作用?我遇到了同样的问题,我在构造函数中绑定了它,但是没有起作用...现在,我看到了您的帖子,并用箭头函数语法替换了我的方法,它可以工作。你能给我解释一下吗?
Guchelkaben

5
来自developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/…;箭头函数不会创建自己的this,而是使用封闭执行上下文的this值。
J. Mark Stevens

1
请注意,在中绑定inline onClick将在每次渲染时返回一个新函数,因此看起来好像已经为prop传递了一个新值,并与shouldComponentUpdatein 混为一谈PureComponent
Ninjakannon

24

这样编写函数:

onToggleLoop = (event) => {
    this.setState({loopActive: !this.state.loopActive})
    this.props.onToggleLoop()
}

粗箭头功能

关键字的绑定,外部和内部的胖箭头功能相同。这与用function声明的函数不同,后者可以在调用时将其绑定到另一个对象。维护this绑定对于诸如映射这样的操作非常方便:this.items.map(x => this.doSomethingWith(x))。


如果我做到了,我就会得到ReferenceError: fields are not currently supported
帕维尔·科马罗夫

如果在构造函数内部我说this.func =()=> {...},它就可以工作,但是我认为这有点愚蠢,并且希望尽可能避免它。
帕维尔·科马罗夫

太糟糕了,您不能在React中使用普通的类语法!
Kokodoko

11

我在render函数中遇到了类似的绑定,最终this以以下方式传递的上下文:

{someList.map(function(listItem) {
  // your code
}, this)}

我也用过:

{someList.map((listItem, index) =>
    <div onClick={this.someFunction.bind(this, listItem)} />
)}

每次呈现列表时,您在其中创建的很多不必要的功能……
TJ Crowder

@TJCrowder是的,的确如此,每次调用render时都会重新创建这些函数。最好将函数创建为类方法,并将它们一次绑定到类,但是对于初学者而言,手动上下文绑定可能会有所帮助
duhaime

2

您应注意,这this取决于调用函数的方式,即:当函数作为this对象的方法被调用时,其设置为调用该方法的对象。

this可在JSX上下文中作为组件对象访问,因此可以将所需的方法作为this方法内联调用。

如果您只是传递对函数/方法的引用,似乎react会将其作为独立函数调用。

onClick={this.onToggleLoop} // Here you just passing reference, React will invoke it as independent function and this will be undefined

onClick={()=>this.onToggleLoop()} // Here you invoking your desired function as method of this, and this in that function will be set to object from that function is called ie: your component object

1
是的,您甚至可以使用第一行,即onClick={this.onToggleLoop}假设您在组件类中定义了一个字段(属性)onToggleLoop = () => /*body using 'this'*/
gvlax

1

如果您正在使用babel,则可以使用ES7绑定运算符https://babeljs.io/docs/en/babel-plugin-transform-function-bind#auto-self-binding来绑定'this'

export default class SignupPage extends React.Component {
  constructor(props) {
    super(props);
  }

  handleSubmit(e) {
    e.preventDefault(); 

    const data = { 
      email: this.refs.email.value,
    } 
  }

  render() {

    const {errors} = this.props;

    return (
      <div className="view-container registrations new">
        <main>
          <form id="sign_up_form" onSubmit={::this.handleSubmit}>
            <div className="field">
              <input ref="email" id="user_email" type="email" placeholder="Email"  />
            </div>
            <div className="field">
              <input ref="password" id="user_password" type="new-password" placeholder="Password"  />
            </div>
            <button type="submit">Sign up</button>
          </form>
        </main>
      </div>
    )
  }

}

0

如果您在生命周期方法(例如componentDidMount ...)中调用创建的方法,则只能使用this.onToggleLoop = this.onToogleLoop.bind(this)和箭头功能onToggleLoop = (event) => {...}

在构造函数中声明函数的常规方法将不起作用,因为生命周期方法被更早地调用了。


0

就我而言,这是解决方案=()=> {}

methodName = (params) => {
//your code here with this.something
}

0

在我的情况下,对于使用forwardRef接收到ref的无状态组件,我必须按照这里所说的去做:https: //itnext.io/reusing-the-ref-from-forwardref-with-react-hooks-4ce9df693dd

由此(onClick无法访问与“ this”相对应的内容)

const Com = forwardRef((props, ref) => {
  return <input ref={ref} onClick={() => {console.log(ref.current} } />
})

对此(有效)

const useCombinedRefs = (...refs) => {
  const targetRef = React.useRef()

  useEffect(() => {
    refs.forEach(ref => {
      if (!ref) return

      if (typeof ref === 'function') ref(targetRef.current)
      else ref.current = targetRef.current
    })
  }, [refs])

  return targetRef
}

const Com = forwardRef((props, ref) => {
  const innerRef = useRef()
  const combinedRef = useCombinedRefs(ref, innerRef)

  return <input ref={combinedRef } onClick={() => {console.log(combinedRef .current} } />
})
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.