function Parent() {
const [list, setState] = useState()
const asyncRemove = (i) => {
// 这儿 i 已经形成了闭包
// 如果 i 之前的元素在异步函数 asyncFunction 执行过程中被移除
// 那这儿的 then 的回调中的 i 就不是正确的 i 了
asyncFunction()
.then(() => {
// 移除第 i 项
const tempList = [...list]
tempList.splice(i, 1)
setState(list)
})
}
return list.map((item, i) => (
<Child data={item} onRemove={() => asyncRemove(i)} />
))
}
如果
Child 1 在执行异步移除自身的时候
Child 2 也触发了异步移除自身的事件
当 Child 1 移除之后, Child 2 的 index 就不对了...
我能想到的方法有两个:
大佬们能提供思路或经验吗?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.