gpt4 book ai didi

javascript - 使用 moment react setState 更改小时

转载 作者:行者123 更新时间:2023-12-03 02:11:59 26 4
gpt4 key购买 nike

我在 moment.js 中设置小时时遇到问题,状态似乎需要一点延迟来解决时间,然后才能更改状态。

我的事件处理程序如下所示

handleKeyDownPickerInput(e, type) {
let input = e.target.value;

if (!input || isNaN(input)) return;

if (type === "hour") {
this.setState({
currentTime: moment(this.state.currentTime).set({ h: input })
});
}
}

https://codesandbox.io/s/w22m3wnj4l

最佳答案

this.setState({
currentTime: moment(this.state.currentTime).set({ h: input })
});

setState 方法异步运行,因此您不能依赖“this.state”,因为它可能无法读取当前状态。

this.setState((previousState) => ({
currentTime: moment(previousState.currentTime).set({ h: input })
})
);

请注意,setState 方法将匿名函数作为第一个参数,您可以读取之前的状态。

这就是你应该写的方式。

仅供引用: State Updates May Be Asynchronous

关于javascript - 使用 moment react setState 更改小时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49525497/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com