美文网首页
Context 和 Props 的区别

Context 和 Props 的区别

作者: ___Jing___ | 来源:发表于2019-06-25 15:21 被阅读0次
    Context 和 Props 的区别

    简单画了一个流程图,参考使用。

    Props 需要在组件之间逐级进行传递,最底层的组件才能拿到 value 数据,如果层级比较多的情况,会使代码很冗余。

    Context 可以省略中间层级的传递过程,在需要使用的地方进行调用,react会一级级向上查找最近的值。

    相关文章

      网友评论

          本文标题:Context 和 Props 的区别

          本文链接:https://www.haomeiwen.com/subject/eratcctx.html