作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在构造函数中绑定(bind)了removeNote函数,但仍然出现无法读取属性的错误。
class Wall extends React.Component {
constructor(props) {
super(props);
this.state = {
noteDataArray: ['Note value 1 yay','2 notes']
};
this.removeNote = this.removeNote.bind(this);
}
saveNote(value, index) {
var temp = this.state.noteDataArray;
temp[index] = value;
this.setState({noteDataArray: temp});
}
removeNote(index) {
var temp = this.state.noteDataArray;
temp.splice(index, 1);
this.setState({noteDataArray: temp});
}
render() {
return (
<div className="Wall">
{this.state.noteDataArray.map(function (value, index) {
return (
<Notes key={index} index={index} removeit={this.removeNote} >
{value}
</Notes>
);
})}
</div>
)
}
}
当我在另一个组件中使用相同的绑定(bind)方法时,它可以工作。
最佳答案
您可能已经绑定(bind)了 this.remove
,但您在 Array#map
中调用它,这会在其每次迭代中创建自己的 this
上下文回调。
Array#map
采用第二个参数,该参数将在每次迭代中用作 this
。
按如下方式修改代码应该可以解决问题:
this.state.noteDataArray.map(function (value, index) {
return (
<Notes key={index} index={index} removeit={this.removeNote} >
{value}
</Notes>
);
}, this);
// ^---- add this as second argument
关于javascript - 我收到 Uncaught TypeError : Cannot read property 'removeNote' of undefined even after binding removeNote in the constructer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43432086/
我是一名优秀的程序员,十分优秀!