我点击时尝试从状态数组中删除项目。目前我有一个onclick监听器,它调用一个传递给道具的函数。但是我得到一个警告:bind():React组件方法可能只绑定到组件实例。请参阅应用程序...并且它不会删除该项目。
感谢您对此问题的任何帮助!它几乎让我的进步停滞不前。
(function (React) {
var data = [
'Go to work',
'Play Albion Online',
'Keep learning React'
]
var App = React.createClass({
getInitialState: function () {
return {data: []}
},
componentWillMount: function () {
this.state.data = data;
},
removeItem: function (i) {
console.log(i);
},
render: function () {
return (
<ToDoList onRemoveItem={this.removeItem} tasks={this.state.data} />
)
}
});
var ToDoList = React.createClass({
render: function () {
var scope = this;
var tasks = this.props.tasks.map(function (task, i) {
return <ToDo onClick={scope.props.onRemoveItem.bind(this, i)} key={task} task={task} />
});
return (
<ul>
{tasks}
</ul>
)
}
});
var ToDo = React.createClass({
render: function () {
return (
<li>{this.props.task}</li>
)
}
});
React.render(<App />, document.getElementById('example'));
})(React);
答案 0 :(得分:14)
React实际上将方法自动绑定到当前组件:
http://facebook.github.io/react/blog/2013/07/02/react-v0-4-autobind-by-default.html
在TodoList组件中,而不是:
scope.props.onRemoveItem.bind(this, i)
尝试:
scope.props.onRemoveItem.bind(null, i)
通过提供null
代替this
,您将允许React做自己的事情。您还需要实际使用onClick处理程序:
<li onClick={this.props.onClick}>{this.props.task}</li>