Я пишу простой компонент в ES6 (с BabelJS), а функции this.setState
не работают.
Типичные ошибки включают что-то вроде
Невозможно прочитать свойство 'setState' из undefined
или
this.setState не является функцией
Знаешь почему? Вот код:
import React from 'react'
class SomeClass extends React.Component {
constructor(props) {
super(props)
this.state = {inputContent: 'startValue'}
}
sendContent(e) {
console.log('sending input content '+React.findDOMNode(React.refs.someref).value)
}
changeContent(e) {
this.setState({inputContent: e.target.value})
}
render() {
return (
<div>
<h4>The input form is here:</h4>
Title:
<input type="text" ref="someref" value={this.inputContent}
onChange={this.changeContent} />
<button onClick={this.sendContent}>Submit</button>
</div>
)
}
}
export default SomeClass