type
status
date
slug
summary
tags
category
password
Date
Free
Free
Link
xhsContent
Price
xhsTitle
🌈 I feel
icon

👟 Articles


📖 Title: Avoid These Common Pitfalls Of React useState
👍 Some Contents
notion image
💡
1. 对于可以计算出来的state, 不要重复使用useState; 2. 对于复杂的数组,尽量不要一起塞进state中,可以简化如id之类的; 3. 尽量避免使用useEffect,或者使用前先思考是否state设计合理,是否逻辑应该放在事件中等 4. 使用useReducer解决排列组合的state问题,如data,loading,fail, success等;避免漏掉某些组合或者本身组合不多但是排列情况确太多的case;