Following is the code that I used to set the state.
handleAddNewQuiz(event){
this.quiz = new Quiz(this.db, this.newQuizName, function(err, affected, value){
if(!err){
this.setState( { quiz : value}); // ERROR: Cannot read property 'setState' of undefined
}
});
event.preventDefault();
};
Rven though the database is created successfully, I cannot call this.state
, as it's always undefined.
I tried:
self = this;
handleAddNewQuiz(event){
this.quiz = new Quiz(this.db, this.newQuizName, function(err, affected, value){
if(!err){
self.setState( { quiz : value}); // ERROR: self.setState is not a function
}
});
event.preventDefault();
};
But it still fails, tried with a = this
, and use a.setState
, still no luck.
How can I solve this?
Mayank's answer is correct.. Alternatively you can use https://www.npmjs.com/package/core-decorators
and use the @autobind decorator before the function.
You need to bind correct
this
(class context) with callback method, then only you will be able to access the class properties and methods.Possible Solutions:
1- Use arrow function, like this:
2- Or use
.bind(this)
withcallback method
, like this:The way you are using will also work, save the reference of
this
inside thehandleAddNewQuiz
method, like this way: