书栈网 · BookStack 本次搜索耗时 0.036 秒,为您找到 12 个相关结果.
  • Normalizr中文文档

    Normalizr-translate-chinese normalizr 来源(书栈小编注) 安装 应用例子 Flux Redux 问题 特性 用法 API Reference new Schema(key, [options]) Schema.prototype.define(nestedSchema) Schema.pro...
  • Prerequisite Concepts

    821 2019-06-02 《Redux Document》
    Prerequisite Reducer Concepts Redux Reducer Basics Pure Functions and Side Effects Immutable Data Management Normalizing Data Prerequisite Reducer Concepts As described in ...
  • Normalizing State Shape

    631 2019-06-02 《Redux Document》
    Normalizing State Shape Designing a Normalized State Organizing Normalized Data in State Relationships and Tables Normalizing Nested Data Normalizing State Shape Many appli...
  • State 范式化

    789 2018-02-14 《Redux 中文文档》
    State 范式化 设计范式化的 State 组织 State 中的范式化数据 表间关系 嵌套数据范式化 State 范式化 事实上,大部分程序处理的数据都是嵌套或互相关联的。例如,一个博客中有多篇文章,每篇文章有多条评论,所有的文章和评论又都是由用户产生的。这种类型应用的数据看上去可能是这样的: const blogPosts = ...
  • Organizing State

    745 2019-06-02 《Redux Document》
    Redux FAQ: Organizing State Table of Contents Organizing State Do I have to put all my state into Redux? Should I ever use React's setState()? Further information Can I put func...
  • 组织 State

    1112 2018-02-14 《Redux 中文文档》
    Redux 常见问题:组织 State 目录 组织 State 必须将所有 state 都维护在 Redux 中吗? 可以用 React 的 setState() 方法吗? 补充资料 可以将 store 的 state 设置为函数、promise或者其它非序列化值吗? 补充资料 如何在 state 中组织嵌套及重复数据? 补充资料 ...
  • Updating Normalized Data

    2896 2019-06-02 《Redux Document》
    Managing Normalized Data Standard Approaches Simple Merging Slice Reducer Composition Other Approaches Task-Based Updates Redux-ORM Managing Normalized Data As mentioned ...
  • Ecosystem

    1257 2019-06-02 《Redux Document》
    Ecosystem Table of Contents Library Integration and Bindings Reducers Reducer Combination Reducer Composition Higher-Order Reducers Actions Utilities Store Change Subscrip...
  • 生态系统

    2169 2018-02-14 《Redux 中文文档》
    生态系统 学习 Redux 演示 示例应用 教程与文章 演讲 使用 Redux 不同框架绑定 中间件 路由 组件 增强器(Enhancer) 工具集 开发者工具 开发者工具监听器 社区公约 翻译 更多 生态系统 Redux 是一个体小精悍的库,但它相关的内容和 API 都是精挑细选的,足以衍生出丰富的工具集和可扩展的...
  • Async Actions

    729 2019-06-02 《Redux Document》
    Async Actions Actions Synchronous Action Creators actions.js (Synchronous) Designing the State Shape Handling Actions reducers.js Async Action Creators actions.js (Asynchron...