Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
492 views
in Technique[技术] by (71.8m points)

javascript - TypeError: Cannont Read Property `State` of Undefined

Getting the error :

TypeError: Cannot read property 'state' of undefined

I face this error when i am going to get my input state value by event onSubmit() .

onFormSubmit(event){
    event.preventDefault();
    console.log(this.state.term);
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You dont have context (this is not bound to your function).

You can fix that using one of the following:

First, bind this in constructor

constructor(props) {
  super(props);
  this.onFormSubmit = this.onFormSubmit.bind(this);
}

Second, use arrow functions

onFormSubmit = (event) => {
  ...
}

Third, use autobind-decorator or the like

@boundMethod
onFormSubmit(event) {
  ...
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...