React 重新渲染 - 误解

React rerendering - misunderstanding

我认为 React 只是重新加载我需要的东西——在我的情况下它看起来不一样或者我做错了什么。

我有 table 名员工。对于一天中的每个员工,我可以设置工作时间的开始和结束时间。像这样:

const ScheduleRow = React.memo((props) => {
    return (
        <tr>
            // number of row - doesn't matter
            <th className="text-center">{ props.no }</th>
            { ["2020-01-01", "2020-01-02", "2020-01-03", "2020-01-04" /* etc */ ].map(
                date => { return (
                    <ScheduleCell date={ date } employee_id={ props.employee_id }/>
                )}) }
        </tr>
    )
})

const ScheduleCell = React.memo((props) => {
    const dispatch = useDispatch()

    let schedule_id = `${props.employee_id}:${props.date}`
    const schedule = useSelector(state => state.schedules)[schedule_id] || null

    /* some code here - not changing state */

    console.log(props.date)

    return (
        <td>
            <Form.Control type="text" value={schedule?.begin}
                onChange={(e) => dispatch({
                    type: "EDIT_SCHEDULE",
                    schedule_id: schedule_id,
                    property: "begin",
                    value: e.target.value
                })}/>
            <Form.Control type="text" value={schedule?.cease}
                onChange={(e) => dispatch({
                    type: "EDIT_SCHEDULE",
                    schedule_id: schedule_id,
                    property: "cease",
                    value: e.target.value
                })}/>
        </td>
    )
});

您可以看到我在 return 之前的 ScheduleCell 中有 console.log(),它打印正在编辑的日期。我相信当我更改单元格(例如日期“2020-01-02”)时,我应该只会在控制台中看到“2020-01-02”。但是我在 ScheduleRow 中看到数组中的每个日期,这意味着即使我只更改了一个单元格,React 也会修改每个单元格。

我的推理有什么问题,如何改进它以仅重新加载编辑单元格?

确保为 <ScheduleCell/> 元素添加适当的 key 道具。没有这个,React 不会关联相同的组件实例应该在重新渲染时重用。同样适用于任何呈现 <ScheduleRow/>.

const ScheduleRow = React.memo((props) => {
    return (
        <tr>
            <th className="text-center">{ props.no }</th> // number of row - doesn't matter
            { ["2020-01-01", "2020-01-02", "2020-01-03", "2020-01-04" /* etc */ ].map(date => { return (
                <ScheduleCell key={ date } date={ date } employee_id={ props.employee_id }/>
            )}) }
        </tr>
    )
})

React.memo 仅在组件实例 的上下文中记忆输出 如果 props 与该实例上次呈现的时间相同。有关其工作原理的更多信息,请阅读 React 的 Reconciliation.