书栈网 · BookStack 本次搜索耗时 0.015 秒,为您找到 1243 个相关结果.
  • 数据状态管理

    数据状态管理 数据的隔离和共享 存放数据到Scene数据区 存放数据到 modulePrivate 区 数据状态管理 我们会把App数据统一管理起来,WeTrident中通过redux来做数据状态的管理。并且设计了一套固定的数据状态隔离和共享的方案来解决redux store上数据管理混乱的问题。 数据的隔离和共享 Redux提供来足够的...
  • combineReducers 进阶

    861 2018-02-14 《Redux 中文文档》
    combineReducers 进阶 结合 Immutable.js 对象使用 reducers 不同 reducers 之间共享数据 更多建议 combineReducers 进阶 Redux 引入了非常实用的 combineReducers 工具函数,但我们却粗暴地将它限制于单一的应用场景:把不同片段的 state 的更新工作委托给一...
  • 项目工程介绍

    1789 2018-11-01 《React入门指北》
    项目工程介绍 node_modules Yarn或Npm包管理器 webpack.*.js文件 .babelrc文件 .editorconfig文件 .eslintrc.js 文件 .postcssrc.js 文件 browserslist 文件 deploy.js文件 src 项目架构 开发一个项目功能时 需要注意的: 处理redu...
  • 分布式事务

    分布式事务 CAP 与 ACID 可靠事件队列 TCC 事务 SAGA 事务 分布式事务 本章中所说的分布式事务(Distributed Transaction)特指多个服务同时访问多个数据源的事务处理机制,请注意它与DTP 模型 中“分布式事务”的差异。DTP 模型所指的“分布式”是相对于数据源而言的,并不涉及服务,这部分内容已经在“全局事务...
  • NavModel

    NavModel interface main property node property NavModel interface Interface used to describe different kinds of page titles and page navigation. Navmodels are usually generate...
  • Reducers and Pure Functions

    Review of Reducers and Pure Functions Review of Reducers and Pure Functions One of the core concepts of Redux is the reducer. A reducer is a function withthe signature (accumul...
  • 组件外部跳转

    在组件外部使用导航 在组件外部使用导航 虽然在组件内部可以使用 this.context.router 来实现导航,但许多应用想要在组件外部使用导航。使用Router组件上被赋予的history可以在组件外部实现导航。 // your main file that renders a Router import { Router , ...
  • 谁在用

    谁在用 典型案例 腾讯 字节 360 谁在使用 谁在用 如果您正在使用dtm,请帮忙在这个链接 添加一个评论,帮助我们更好的扩散dtm。 典型案例 腾讯 腾讯内部有多个事业部使用了dtm,涵盖许多业务场景。 dtm合并了多个腾讯同学提过来的PR,特性包括uber automaxprocs, MaxOpenConns, Polaris等...
  • Decorators

    Decorators Article: Related: Decorators Decorators (supported by Babel, in Stage 2 proposal as of 03/17) If you’re using something like mobx, you can decorate your class com...
  • Component

    737 2019-06-08 《Fish Redux》
    Component Component Component is the encapsulation of view presentation and logic functions.For the moment, from the perspective of Redux, we divide the component into state-ma...