书栈网 · BookStack 本次搜索耗时 0.039 秒,为您找到 1243 个相关结果.
  • CQRS

    CQRS Installation Commands Events Sagas Queries Setup Summary Example CQRS The flow of simple CRUD (Create, Read, Update and Delete) applications can be described using...
  • Async Flow

    640 2019-06-02 《Redux Document》
    Async Flow Next Steps Async Flow Without middleware , Redux store only supports synchronous data flow . This is what you get by default with createStore() . You may enhance ...
  • 组织 Reducer

    882 2018-02-14 《Redux 中文文档》
    组织 Reducer 写 Reducer 时必要的概念 必要的概念 组织 Reducer 作为核心概念, Redux 真的是一种十分简单的设计模式:所有你“写”的逻辑都集中在一个单独的函数中,并且执行这些逻辑的唯一方式就是传给 Redux 一个能够描述当时情景的普通对象(plain object)。Redux store 调用这些逻辑函数,并传入...
  • 编写测试

    1115 2018-02-14 《Redux 中文文档》
    编写测试 设置 Action 创建函数 (Action Creators) 示例 异步 Action 创建函数 示例 Reducers 示例 Components 示例 连接组件 混用 ES6 模块和 CommonJS 的注意事项 中间件 示例 词汇表 编写测试 因为你写的大部分 Redux 代码都是些函数,而且大部分是纯...
  • 第五小节:createStore

    786 2019-06-22 《前端大宝书》
    createStore createStore(reducer, [preloadedState], [enhancer]) [preloadedState] [enhancer] reducer 返回值 createStore Redux的核心函数,通过这个函数创建一个 Redux store 来以存放应用中所有的 state 应用中...
  • Testing Reducers

    Testing Reducers Testing Reducers Luckily, testing reducers is a lot like testing our synchronous action creators, since all reducer operations are synchronous. This plays a bi...
  • 5.2 Persistent

    5.2 Persistent 5.2 Persistent 1.AsyncStorage 2.apply redux-persist middlewear import { AsyncStorage } from 'react-native' ; import { applyMiddleware , createS...
  • 实现撤销重做

    1019 2018-02-14 《Redux 中文文档》
    实现撤销历史 理解撤销历史 设计状态结构 设计算法 处理 Undo 处理 Redo 处理其他 Action 第一次尝试: 编写 Reducer 初识 Reducer Enhancers 第二次尝试: 编写 Reducer Enhancer 使用 Redux Undo 安装 封装 Reducer reducers/todos.js re...
  • 和 React 配合使用

    在 React 应用中使用 Redux <Provider> Connect 一个具体一点的例子 在 React 应用中使用 Redux 和 Flux 类似,Redux 也是需要注册一个回调函数 store.subscribe(listener) 来获取State 的更新,然后我们要在 listener 里面调用 setState() 来...
  • bindActionCreators

    662 2018-02-14 《Redux 中文文档》
    bindActionCreators(actionCreators, dispatch) 参数 返回值 示例 TodoActionCreators.js SomeComponent.js 小贴士 bindActionCreators(actionCreators, dispatch) 把一个 value 为不同 action cr...