• useContext


    1、在大厂已经使用useContext来代替Redux等状态管理工具

    2、在众多react状态管理工具中,MobX和Redux-Saga提供了异步方法。

    3、Mobx,Redux,Saga,DVA, ZuStand是比较常见的,也有redux-saga,react-redux等

    4、在Redux中,异步操作需要借助第三方库reduc-thunk、redux-promise、redux-saga等。在Mobx中(OOP 风格),可以直接定义异步action,只需要写成generator形式的函数即可。

    5、习惯了Vuex、Pinia那一套,推荐使用Mobx。如果是大项目,大团队协作开发推荐使用Redux

    6、Prop Drilling就是一种传值方式,具体表现为父->子->孙,子组件不会使用的到,只在孙组件使用,代码冗余,不好维护。

    1. import { useState, createContext, useContext } from "react";
    2. const UserContext = createContext(null);
    3. const Example2 = () => {
    4. return (
    5. <div>
    6. <Parent />
    7. </div>
    8. );
    9. };
    10. const Parent = () => {
    11. const [username, setUsername] = useState("liuyi");
    12. return (
    13. <UserContext.Provider value={{ username, setUsername }}>
    14. <h1>父组件</h1>
    15. 你好 {username}
    16. <Child />
    17. </UserContext.Provider>
    18. );
    19. };
    20. const Child = () => {
    21. const { username, setUsername } = useContext(UserContext);
    22. return (
    23. <div>
    24. <h2>子组件 {username}</h2>
    25. <GrandChild />
    26. </div>
    27. );
    28. };
    29. const GrandChild = () => {
    30. const { setUsername } = useContext(UserContext);
    31. return (
    32. <div>
    33. <h3>孙组件</h3>
    34. <button
    35. onClick={() => {
    36. setUsername("xiaobai");
    37. }}
    38. >
    39. 修改用户名
    40. </button>
    41. </div>
    42. );
    43. };
    44. export default Example2;

  • 相关阅读:
    支撑全产业AI,需要怎样的算力服务?
    Rsync学习笔记2
    Spring Cloud 微服务入门
    什么是SFTP
    46-3 护网溯源 - 溯源报告编写
    剑指 Offer 66. 构建乘积数组
    controller、service、dao之间的关系
    二.音视频入门
    传统企业如何做数字化转型?弄懂这3大底层逻辑你就懂了
    Linux0.11——第二回 从0x7c00到0x90000
  • 原文地址:https://blog.csdn.net/m0_47999208/article/details/132978823