我正在使用带有 ES6 的 ReactJS,但是我在通过 props 与 child > parent 通信时遇到了一些问题。我的方法示例:
class SearchBar extends React.Component {
handler(e){
this.props.filterUser(e.target.value);
}
render () {
return <div>
<input type='text' className='from-control search-bar' placeholder='Search' onChange={this.handler} />
</div>
}
}
export default class User extends React.Component {
constructor(props) {
super(props);
this.state = {name: '', age: '', filter: ''};
}
filterUser(filterValue){
this.setState({
filter: filterValue
});
}
render() {
return <div>
<SearchBar filterUser={this.filterUser} />
<span>Value: {this.state.filter}</span>
</div>
}
}
这返回Uncaught TypeError: this.props.filterUser is not a function
.
任何的想法?可能绑定?
[编辑] 解决方案(感谢@knowbody 和@Felipe Skinner):
我的构造函数中缺少绑定。SearchBar 构造函数中的绑定工作完美。
使用React.createClass()
(ES5),它会自动绑定到this
您的函数。在 ES6 中,您需要this
手动绑定。更多信息https://facebook.github.io/react/docs/reusable-components.html#es6-classes