**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
enter image description here
首先,它给我带来了几次空状态,然后它也更新了几次
我希望立即更新状态,并在调用console.log时在其中显示一个结果
1条答案
按热度按时间g2ieeal71#
这是因为react生命周期的缘故。
<Convertidor />
组件在每次状态发生变化或父组件呈现时呈现,子组件也将在父组件呈现后重新呈现。我建议使用memo
或useMemo
来记忆您的组件/挂钩。