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

    title: Taro 组成 title: Taro 组成 NPM 包 描述 @tarojs /taro"">@tarojs/taro taro 运行时框架 @tarojs /taro-h5"">@tarojs/taro-h5 taro h5 运行时框架 @tarojs /taro-rn"">@tarojs/t...
  • 选择合适的模式

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

    805 2019-06-02 《Redux Document》
    Redux FAQ Table of Contents Redux FAQ Table of Contents General When should I learn Redux? When should I use Redux? Can Redux only be used with React? Do I need to have...
  • 事务选项

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

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

    819 2019-06-02 《Redux Document》
    Redux FAQ: Design Decisions Table of Contents Design Decisions Why doesn't Redux pass the state and action to subscribers? Further Information Why doesn't Redux support using cl...
  • Reducer 基础概念

    1747 2018-02-14 《Redux 中文文档》
    Reducer 基础概念 关于不可变(immutability)和突变(mutation)以及副作用 Redux Reducer 基础 纯函数和副作用 不可变数据的管理 范式化数据 Reducer 基础概念 就像 Reducers 中描述的一样,一个 Redux reducer 函数需要具备: 应该有类似 (previousState...
  • React Redux

    1351 2018-02-14 《Redux 中文文档》
    Redux 常见问题:React Redux 目录 React Redux 为何组件没有被重新渲染、或者 mapStateToProps 没有运行? 补充资料 为何组件频繁的重新渲染? 补充资料 怎样使 mapStateToProps 执行更快? 补充资料 为何不在被连接的组件中使用 this.props.dispatch ? 补充资料 ...
  • 第二小节:Redux安装

    714 2019-06-22 《前端大宝书》
    Hello Redux 环境配置 调整结构 Hello Redux 环境配置 这里我们使用create-react-app 快速创建一个 React 应用环境 create - react - app react - redux - demo 装包 安装我们需要的redux 包和react-redux 包 npm i redux...
  • 迁移到 Redux

    838 2018-02-14 《Redux 中文文档》
    迁移到 Redux 从 Flux 项目迁移 从 Backbone 项目迁移 迁移到 Redux Redux 不是一个单一的框架,而是一系列的约定和一些让他们协同工作的函数 。你的 Redux 项目的主体代码甚至不需要使用 Redux 的 API,大部分时间你其实是在编写函数。 这让到 Redux 的双向迁移都非常的容易。我们可不想把你限制得死死...