为什么我的setState不使用带有react-native的useEffect在setInterval中更新?

时间:2020-05-06 21:17:24

标签: javascript reactjs react-native react-hooks use-effect

我的组件是:

export default function TopHalf(props) {
    const [startDegrees, setStartDegrees] = useState(0)

    useEffect(() => {
        const centerPoint = { x: dim.width / 2, y: dim.height / 4 }
        setCenter(centerPoint)

        setInterval(() => {
            console.log('startDegrees', startDegrees)
            setStartDegrees(startDegrees + 5)
        }, 500)
    }, [])
...
    return (
        <HalfView style={{ top: 0, position: 'absolute', width: '100%' }} >
            {props.participants?.map(circularParticipants)}
        </HalfView>
    )
}

因此您可以看到startDegrees应该每半秒增加5。但是当我注销时它停留在0

1 个答案:

答案 0 :(得分:3)

从react文档中:

将setState()视为请求而不是立即命令 更新组件。为了获得更好的感知性能,React可能会 延迟它,然后一次通过更新几个组件。反应 不保证状态更改会立即应用。

https://reactjs.org/docs/react-component.html#setstate

在这种情况下,react可能未更新状态,因此日志记录正在读取原始值。为避免setState的并发问题,您可以将回调作为第二个参数传递,该参数在setState执行时被调用。这样,它将始终在更新之前直接获取值。

上面的链接中有更多信息。希望这会有所帮助!