java怎么删除以前的工程_React删除多个项目

我有一个可以通过按下按钮删除的项目列表,如附带的屏幕截图所示 .

5883eaac-ac7e-471a-83d6-b39087166c6d.png

删除任何项目在第一次工作正常,但是当我尝试删除另一项时它将无法工作,因为该组件从以前删除的项目接收数据 .

这是我的代码:

父组件

onDeleteClick(config, e) {

// it removes the item at the first time

// on the second try the received config parameter is the same as before

this.props.deleteConfigAction(config.configId)

.then(res => {

...

})

.catch(err => {

console.log(err)

})

}

{this.state.configurations.map((config, index) => {

let boundDeleteClick = this.onDeleteClick.bind(this, config);

return (

key={`item-${index}`}

handleRemove={boundDeleteClick}/>

)

})}

ConfigCardView 组件:

...

this.props.handleRemove()}>Delete

...

我无法弄清楚我错过了什么......

UPDATE

我已经修复了删除项目后更新 configurations state属性:

this.props.deleteConfigAction(config.configId)

.then(res => {

...

this.setState({configurations: newData})

})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值