摘要: 入门版本 创建一个store,包含ctx、reduce、dispatch+action import { createContext, useContext } from 'react'; // 定义ctx export const defaultValue = { count: 0, }; exp 阅读全文
posted @ 2025-09-24 16:04 丁少华 阅读(3) 评论(0) 推荐(0)
摘要: props与memo 如下所示例子中,因为App内部状态的更新,总会牵连其无辜子组件Demo的更新。 const Demo = () => { console.log('Demo render'); return ( <div> 我是子组件 </div> ); }; const App = () = 阅读全文
posted @ 2025-09-24 12:50 丁少华 阅读(19) 评论(0) 推荐(0)