我会直截了当地说。这是我在ReactJS应用程序中的组件:
class BooksList extends Component {
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
}
handleClick() {
e.preventDefault();
console.log("The link was clicked");
}
render() {
return (
<div>
<a className="btn btn-success" onClick={handleClick}>
Add to cart
</a>
</div>
);
}
}
为什么在加载组件时会出现以下错误?
Uncaught ReferenceError: handleClick is not defined
修改
你回答后我把我的代码更改为:
handleClick(e) {
e.preventDefault();
console.log("Item added to the cart");
}
renderBooks(){
return this.props.myBooks.data.map(function(book){
return (
<div className="row">
<table className="table-responsive">
<tbody>
<tr>
<td>
<p className="bookTitle">{book.title}</p>
</td>
</tr>
<tr>
<td>
<button value={book._id} onClick={this.handleClick}>Add to cart</button>
</td>
</tr>
</tbody>
</table>
</div>
);
});
}
}
render() {
return (
<div>
<div>
<h3>Buy our books</h3>
{this.renderBooks()}
</div>
</div>
);
}
正如你所看到的,我有.map
遍历一系列书籍。
对于每本书,我都有一个按钮,如果点击该按钮,则会将特定的书添加到用户的购物车中。
如果我关注@Tharaka Wijebandara回答我可以在.map
之外设置按钮,但在这种情况下我仍然会收到错误:
Uncaught (in promise) TypeError: Cannot read property 'handleClick' of undefined
at http://localhost:8080/bundle.js:41331:89
at Array.map (native)
答案 0 :(得分:6)
使用this.handleClick
<a className="btn btn-success" onClick={this.handleClick}>
Add to cart
</a>
,您忘记在e
方法中添加handleClick
作为参数。
handleClick(e) {
e.preventDefault();
console.log("The link was clicked");
}
答案 1 :(得分:3)
您在编辑部分中提到的问题的解决方案。
原因是,你正在失去context
回调函数中的map
,你需要使用回调函数bind
这个(类上下文)或使用arrow function
,它会解决你的问题。
renderBooks(){
return this.props.myBooks.data.map((book) => { //here
return (
.....
);
});
}
或者使用带有回调函数的.bind(this)
,如下所示:
renderBooks(){
return this.props.myBooks.data.map(function (book) {
return (
.....
);
}.bind(this)); //here
}
答案 2 :(得分:0)
添加到@Tharaka Wijebandara答案,您也可以将函数声明为const
,如下所示:
render() {
const handleClick = this.handleClick;
return (
<div>
<a className="btn btn-success" onClick={handleClick}>
Add to cart
</a>
</div>
);
}
其中handleClick
定义为:
handleClick(e) {
e.preventDefault();
console.log("The link was clicked");
}