,可以通过以下步骤实现:
const reducer = (state, action) => {
switch (action.type) {
case 'ADD_OBJECT':
return {
...state,
array: state.array.map((innerArray, index) => {
if (index === action.index) {
return [...innerArray, action.object];
}
return innerArray;
})
};
default:
return state;
}
};
import React, { useReducer } from 'react';
const initialState = {
array: [[]] // 初始状态为一个包含一个空数组的数组
};
const MyComponent = () => {
const [state, dispatch] = useReducer(reducer, initialState);
// 添加对象到数组内的数组
const addObject = (object, index) => {
dispatch({ type: 'ADD_OBJECT', object, index });
};
return (
<div>
{/* 渲染数组内的数组 */}
{state.array.map((innerArray, index) => (
<div key={index}>
{innerArray.map((object, innerIndex) => (
<span key={innerIndex}>{object}</span>
))}
<button onClick={() => addObject('New Object', index)}>Add Object</button>
</div>
))}
</div>
);
};
export default MyComponent;
在上述代码中,我们定义了一个初始状态initialState,其中包含一个数组array,初始时只有一个空数组。然后使用useReducer来创建state和dispatch函数,其中reducer函数用于更新state。在组件中,我们通过map函数渲染数组内的数组,并为每个内部数组添加一个按钮,点击按钮时调用addObject函数来添加对象到对应的内部数组中。
这样,当点击"Add Object"按钮时,会触发dispatch函数调用,传入action对象,其中type为'ADD_OBJECT',object为要添加的对象,index为要添加到的内部数组的索引。reducer函数根据action的类型来更新state,使用map函数遍历数组,找到对应索引的内部数组,将新对象添加到该内部数组中。
这是一个简单的使用useReducer将对象添加到数组内的数组中的示例。在实际应用中,你可以根据具体需求进行修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云