render() {
console.log(this.state.myStateValue); // I see this on the console
var test = configOptions ?
Object.keys(configOptions).map(function(key) {
console.log('test'); // I see this on the console
console.log(this.state.myStateValue); // Getting Uncaught TypeError: Cannot read property 'state' of undefined
}
return() {...}
}
私は間違っていますか?Object.keysの中に状態が見つかりません
ありがとうございます!
の可能性のある重複した[?コールバックの内側に正しい\ 'この\'コンテキストにアクセスする方法](HTTPS ://stackoverflow.com/questions/20279484/how-to-access-the-correct-this-context-inside-a-callback) – noahnu