不要再滥用 useState 了!
原文英文,约300词,阅读约需1分钟。发表于: 。When we learn React hooks, the first one we encounter is useState, and we’re amazed by how it updates our components and reflects the values. However, we can get lazy and start using it for...
学习 React hooks 时,useState 常用于更新组件状态,但过度使用可能导致性能问题。在登录页面中,每次输入都会触发重新渲染。可以用 useRef 替代 useState,只在提交时获取输入值,从而提高性能。