书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 919 个相关结果.
  • 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. ...
  • 核心概念

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

    809 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

    667 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
  • prop-types

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

    711 2019-06-02 《Redux Document》
    Glossary State Action Reducer Dispatching Function Action Creator Async Action Middleware Store Store creator Store enhancer Glossary This is a glossary of the core t...
  • Writing Tests

    Writing Tests Writing Tests 测试异步代码不是很容易的事情。我们仍然在学习测试 Epics 最好的方式。如果你有完美的方案,请分享 ! 如果你对常规 Redux 还没有进行过测试。你需要首先转向它们的文档 ,因为几乎所有都是适用的。 一种方式是 mock 完整的 Redux store 并且在每个测试用例中替换根...
  • 服务端渲染

    1208 2018-02-14 《Redux 中文文档》
    服务端渲染 服务端使用 Redux 安装 安装依赖库 服务端开发 server.js 处理请求 注入初始组件的 HTML 和 State 客户端开发 client.js 准备初始 State 处理 Request 参数 server.js 获取异步 State api/counter.js server.js 安全注意...