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

    创建Store 创建Store 在使用框架的任何功能之前,您需要创建一个React项目,并使用函数createReduxStore 生成一个Redux的store对象。 // index.tsx import React from 'react' ; import ReactDom from 'react-dom' ; ...
  • Composing UX Variations

    Using Composition to handle UX variations Example Related links: Using Composition to handle UX variations Combining smaller reusable components to build a bigger UI blocks. ...
  • 核心概念

    1055 2018-02-14 《Redux 中文文档》
    核心概念 核心概念 Redux 本身很简单。 当使用普通对象来描述应用的 state 时。例如,todo 应用的 state 可能长这样: { todos : [{ text : 'Eat food' , completed : true }, { text : 'Exer...
  • Reducer

    810 2018-02-14 《Redux 中文文档》
    Redux 常见问题:Reducer 目录 Reducer 如何在 reducer 之间共享 state? combineReducers 是必须的吗? 补充资料 处理 action 必须用 switch 语句吗? 补充资料 Redux 常见问题:Reducer 目录 如何在 reducer 之间共享 state? combin...
  • applyMiddleware

    763 2019-06-02 《Redux Document》
    applyMiddleware(…middleware) Arguments Returns Example: Custom Logger Middleware Example: Using Thunk Middleware for Async Actions Tips applyMiddleware(…middleware) Middle...
  • 第四小节:Store

    711 2019-06-22 《前端大宝书》
    Store 概念 创建store Store Redux 应用只有一个单一的store 概念 Store 就是一个维护应用程序状态的对象 提供提供getState() 方法获取state store . getState (): 获取最近的内部状态对象 - 返回应用当前的 state 树 ...
  • Others

    668 2019-06-08 《Fish Redux》
    What’s the difference between ‘Fish Redux’ and ‘Redux’ ? What is an adapter? What is a connector? Communication mechanism of fish-redux Recommended directory structure
  • 概述

    概述 二阶段消息 SAGA 其他模式 典型应用场景 秒杀系统 订单系统 缓存一致性 小结 概述 dtm 解决跨服务更新数据的一致性问题,提供了相关问题的一站式解决方案。 几乎每一个非单体的系统,几乎每一个订单系统,都会出现跨服务更新数据的需求,这样的需求是非常广泛的存在的,也是服务化/微服务化之后,带来的一个挑战。面对这样的情况,当前...
  • prop-types

    900 2018-11-01 《React入门指北》
    prop-types Redux prop-types 运行时参数检验 在react主要是在开发环境下对props参数类型进行校验. import PropTypes from 'prop-types' ; class SearchBar extends Component { static...
  • 各事务模式

    Seata AT 模式 Seata TCC 模式 Seata Saga 模式