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

    Redux Redux State Action Reducer Store Middleware 以上概念和社区的 Redux 是完全一致的。Redux 是一个用来做[可预测][集中式][易调试][灵活性]的数据管理的框架。如果想对 Redux 有更近一步的理解,请参考 https://github.com/reduxjs/redux
  • Redux 进阶教程

    1088 2018-09-06 《Redux 简明教程》
    Redux 进阶教程 原文(保持更新):[https://github.com/kenberkeley/redux-simple-tutorial/blob/master/redux-advanced-tutorial.md][advanced-tutorial ] 写在前面相信您已经看过 [Redux 简明教程][simple-tutorial],...
  • 搭配 React

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

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

    Redux Redux @dan_abramov ">Dan Abramov 在 React Europe 2015 上作了一场令人印象深刻的演示 Hot Reloadingwith Time Travel ,之后 Redux迅速成为最受人关注的 Flux 实现之一。 Redux 把自己标榜为一个“可预测的状态容器”,其实也是 Flux里面“单向...
  • Testing Redux

    Testing Redux Testing Redux Unit testing Redux is a very straightforward process. There are two primary units: Reducers are pure functions that lend themselves well to testi...
  • 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

    985 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 ...
  • 选择合适的模式

    如何选择事务模式 特性对比 应用场景 如何选择事务模式 特性对比 二阶段消息模式: 适合不需要回滚的场景 saga模式: 适合需要回滚的场景 tcc事务模式: 适合一致性要求较高的场景 xa事务模式: 适合并发要求不高,没有数据库行锁争抢的场景 应用场景 秒杀场景:当秒杀访问量很大时,多数系统都会选择在redis中扣减库存,扣减成功后再创...
  • 事务选项

    事务选项 概况 等待事务结果 超时 重试时间 自定义header 事务选项 概况 dtm的事务可以设定以下的选项: type TransOptions struct { WaitResult bool `json:"wait_result,omitempty" go...