我有一个初始数组,可以将其添加和删除,在那里没有问题。
const initialItems = [
{
id: Date.now(),
text: 'Get milk',
},
{
id: Date.now(),
text: 'Get eggs',
},
]
..但是我试图弄清楚如何使用分派功能有效地编辑其中一项的文本。
我的调度看起来像这样:
const editItemHandler = () => {
dispatch({
type: 'EDIT_ITEM',
id: Date.now(),
text: itemInputRef.current.value,
index,
})
}
哪个只是传递输入值
<input
autoFocus
type='text'
ref={itemInputRef}
onKeyDown={(e) => {
if (e.key === 'Escape') {
setToggle(!toggle)
}
if (e.key === 'Enter') {
// Dispatch
editItemHandler()
setToggle(!toggle)
}
}}
/>
我的减速器文件如下:
const itemReducer = (state, action) => {
switch (action.type) {
case 'ADD_ITEM': {
return [
...state,
{
id: action.id,
text: action.text,
},
]
}
case 'EDIT_ITEM': {
// Attempt 1
return [...state.splice((item, index) => index, 1, action.text)]
// Attempt 2
return [
...state.filter((item, index) => index !== action.index),
{
id: action.id,
text: action.text,
},
]
}
case 'DELETE_ITEM': {
return [...state.filter((item, index) => index !== action.index)]
}
default: {
return state
}
}
}
export default itemReducer
我已经用“ EDIT_ITEM”类型尝试过的两种方法发表了评论。
方法1只是删除了该项目,并在数组的底部添加了一个新值,虽然这不是我想要的,所以我不得不尝试重新排序。
方法2使用的是接头,我认为这是用指定值替换项目的方法。但是,它返回的只是带有原始文本的“已编辑”(因此甚至不会被编辑),并删除其他所有内容。
有人可以帮助我了解我如何错误地使用此功能,或者是否有更好的方法来编辑项目。我显然做错了,但不知道是什么。我已经搜索并尝试了各种方法都无济于事,因此将不胜感激。
理想情况下,我希望该商品也保持与以前相同的ID,因此如何保留该商品将是一个加分,但目前并不紧急。
答案 0 :(得分:0)
要更新数组中的项目,您有几种选择:
case 'EDIT_ITEM': {
// using map
return state.map((item, i) =>
i === action.index ? { id: action.id, text: action.text } : item
// using slice
return [
...state.slice(0, action.index),
{ id: action.id, text: action.text },
...state.slice(action.index+1)
]
这是splice
return [...state.splice((item, index) => index, 1, action.text)]
因为splice返回一个包含已删除元素的数组,并且它不接受函数作为第一个参数,而是将要开始更改数组的索引。
正确的拼接方式:
case 'EDIT_ITEM': {
// using splice
let newState = [ ...state ]
newState.splice(action.index, 1, { id: action.id, text: action.text })
// or you can directly do
newState[action.index] = { id: action.id, text: action.text }
// and return the new state
return newState;