使用 usereducer hooks 在过滤器方法中传递 id 时出错

下面的代码面临删除列表的问题。让我知道我做了什么问题。该案例中的问题是删除过滤区域中的部分。传递 id 是问题。请简化问题。


函数Reducer Three()


 {

    const inputRef = useRef();

    const initialstate = [{

        id: uuid(),

        country: "india"

    }]

            const [items, dispatch] = useReducer((state, action) => {

                switch (action.type) {

                    case'add':

                    return [

                        ...state, 

                        {

                            id: uuid(),

                            country: action.name

                        }

                    ];

                    case 'remove':

                        return state.filter(s => s.id !== action.id);

                    default: 

                    return state;

                }

            }, initialstate);



            function handleSubmit(event) {

                event.preventDefault();

                dispatch({

                    type: 'add',

                    name: inputRef.current.value

                });

                inputRef.current.value = '';

            }

    return (

        <div>

          <form onSubmit={handleSubmit}>

              <input ref={inputRef} />

                           </form>  

        <ul>

            {items.map((item, index) => (

                <li key={item.id}>{item.country}

                <button onClick={() => dispatch({type:'remove', index})}>close</button>

                </li>

            ))}

        </ul>


        </div>

    )

}


export default Reducerthree


米琪卡哇伊
浏览 83回答 1
1回答

慕丝7291255

你需要通过id行动,而不是通过它。将删除操作更改为:&nbsp;<button&nbsp;onClick={()&nbsp;=>&nbsp;dispatch({type:'remove',&nbsp;id:&nbsp;item.id})}>close</button>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript