我有以下代码:
renderPosts() {
return _.map(this.state.catalogue, (catalogue, key) => {
return (
<div className="item col-md-3" key={key} id={key}>
<img src={this.state.catalogue[key].avatarURL} height={150} with={150}/>
<h3>{catalogue.marque}</h3>
<h4>{catalogue.numero}</h4>
<h4>{catalogue.reference}</h4>
<p>{catalogue.cote}</p>
<div className="text-center">
<button className="btn btn-danger" onClick={() => {if(window.confirm('Delete the item?')){this.removeToCollection.bind(this, key)};}}>Supprimer</button>
</div>
</div>
)
})
}
我也有此功能:
removeToCollection(key, e) {
const item = key;
firebase.database().ref(`catalogue/${item}`).remove();
}
当我在“ onclick”按钮中使用不带确认窗口的功能时,代码可以很好地工作。但是,当我要使用确认窗口时,单击我的按钮时会显示确认窗口,但是我的项目没有被删除。
有什么想法吗?
感谢您的帮助!
答案 0 :(得分:4)
基本上,您是在绑定函数而不是调用它……您应该事先绑定,最好是在构造函数中……然后调用它。 试试这个:
renderPosts() {
this.removeToCollection = this.removeToCollection.bind(this);
return _.map(this.state.catalogue, (catalogue, key) => {
return (
<div className="item col-md-3" key={key} id={key}>
<img src={this.state.catalogue[key].avatarURL} height={150} with={150}/>
<h3>{catalogue.marque}</h3>
<h4>{catalogue.numero}</h4>
<h4>{catalogue.reference}</h4>
<p>{catalogue.cote}</p>
<div className="text-center">
<button className="btn btn-danger" onClick={() => {if(window.confirm('Delete the item?')){this.removeToCollection(key, e)};}}>Supprimer</button>
</div>
</div>
)
})
}
答案 1 :(得分:1)
您只是绑定函数而未调用它。
使用bind
并调用bind
ed函数的正确语法。
if (window.confirm("Delete the item?")) {
let removeToCollection = this.removeToCollection.bind(this, 11);//bind will return to reference to binded function and not call it.
removeToCollection();
}
或者您也可以在没有绑定的情况下这样做。
if (window.confirm("Delete the item?")) {
this.removeToCollection(11);
}
如果在removeToCollection
中关注到 this ,请使用arrow function
进行定义。
removeToCollection=(key)=> {
console.log(key);
}
答案 2 :(得分:0)
我和下面一样-
我有一个聪明的(类)组件
<Link to={`#`} onClick={() => {if(window.confirm('Are you sure to delete this record?')){ this.deleteHandler(item.id)};}}> <i className="material-icons">Delete</i> </Link>
我定义了一个函数,将删除端点称为-
deleteHandler(props){
axios.delete(`http://localhost:3000/api/v1/product?id=${props}`)
.then(res => {
console.log('Deleted Successfully.');
})
}
那对我有用!