书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 919 个相关结果.
  • Usage With TypeScript

    792 2019-06-02 《Redux Document》
    Usage with TypeScript A Practical Example Type Checking State Type Checking Actions & Action Creators Type Checking Reducers Usage with React Redux Usage with Redux Thunk Not...
  • Prerequisite Concepts

    950 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 ...
  • 搭配 React

    1066 2018-02-14 《Redux 中文文档》
    搭配 React 安装 React Redux 容器组件(Smart/Container Components)和展示组件(Dumb/Presentational Components) 设计组件层次结构 展示组件 容器组件 其它组件 组件编码 实现展示组件 components/Todo.js components/TodoList.js ...
  • API 文档

    914 2018-02-14 《Redux 中文文档》
    API 文档 顶级暴露的方法 Store API 引入 ES6 ES5 (CommonJS) ES5 (UMD build) API 文档 Redux 的 API 非常少。Redux 定义了一系列的约定(contract)来让你来实现(例如 reducers ),同时提供少量辅助函数来把这些约定整合到一起。 这一章会介绍所有的 Redu...
  • Testing Simple Actions

    Testing Simple Actions Testing Simple Actions Consider the following simple actions, from the Redux chapter of this book: import { Injectable } from '@angular/core' ; ...
  • Code Structure

    986 2019-06-02 《Redux Document》
    Redux FAQ: Code Structure Table of Contents Code Structure What should my file structure look like? How should I group my action creators and reducers in my project? Where should ...
  • bindActionCreators

    597 2019-06-02 《Redux Document》
    bindActionCreators(actionCreators, dispatch) Parameters Returns Example TodoActionCreators.js SomeComponent.js Tips bindActionCreators(actionCreators, dispatch) Turns an ...
  • 简介

    简介 简介 Fish Redux 是一个基于 Redux 数据管理的组装式 flutter 应用框架, 它特别适用于构建中大型的复杂应用。 它的特点是配置式组装。一方面我们将一个大的页面,对视图和数据层层拆解为互相独立的 Component|Adapter,上层负责组装,下层负责实现;另一方面将 Component|Adapter 拆分为 View...
  • Data flow

    758 2019-06-02 《Redux Document》
    Data Flow Next Steps Data Flow Redux architecture revolves around a strict unidirectional data flow . This means that all data in an application follows the same lifecycle pa...
  • Container 与 Presentational Components 入门

    Container 与 Presentational Components 入门 前言 Container 与 Presentational Components 超级比一比 Container Components Presentational Components 总结 延伸阅读 :door: 任意门 Container 与 Pre...