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

    1170 2018-02-14 《Redux 中文文档》
    Redux 常见问题:Action 目录 Actions 为何 type 必须是字符串,或者至少可以被序列化? 为什么 action 类型应该作为常量? 补充资料 是否存在 reducer 和 action 之间的一对一映射? 补充资料 怎样表示类似 AJAX 请求的 “副作用”?为何需要 “action 创建函数”、“thunks” 以及 “m...
  • 第八小节:connect

    813 2019-06-22 《前端大宝书》
    Connect 安装 使用 connect 方法声明 <Provider> 组件 参考 Connect React-Redux只在组件内使用,用来连接 store 和 React 组件 react 组件和 redux store 之间是没有任何关系的。这一节,我们就把他们二者 connect 起来。 连接二者,需要一个专门的库,...
  • 第十小节:Thunk

    842 2019-06-22 《前端大宝书》
    hello react-thunk Action Creator 引入redux-thunk 安装 什么是中间件 使用 dispatch 异步操作 分析一下上面这种情况的流程: 总结 参考 hello react-thunk thunk :模式转换 Action Creator Action Creator 不是 thunk ...
  • createEpicMiddleware

    createEpicMiddleware(rootEpic, [options]) Arguments Returns Example redux/configureStore.js createEpicMiddleware(rootEpic, [options]) createEpicMiddleware() 用来创建 redux-o...
  • Server Rendering

    823 2019-06-02 《Redux Document》
    Server Rendering Redux on the Server Setting Up Install Packages The Server Side server.js Handling the Request Inject Initial Component HTML and State The Client Side clie...
  • Reducing Boilerplate

    591 2019-06-02 《Redux Document》
    Reducing Boilerplate Actions Action Creators actionCreators.js AddTodo.js Generating Action Creators Async Action Creators actionCreators.js UserInfo.js actionCreators.js ...
  • Code Splitting

    829 2019-06-02 《Redux Document》
    Code Splitting Basic Principle Using replaceReducer Reducer Injection Approaches Defining an injectReducer function Using a 'Reducer Manager' Libraries and Frameworks Cod...
  • Container 與 Presentational Components 入門

    Container 與 Presentational Components 入門 前言 Container 與 Presentational Components 超級比一比 Container Components Presentational Components 總結 延伸閱讀 Container 與 Presentational ...
  • Writing Tests

    739 2019-06-02 《Redux Document》
    Writing Tests Setting Up Action Creators Example Async Action Creators Example Reducers Example Components Example Connected Components Middleware Example Glossary ...
  • 测试简单的Action

    测试简单的 Action 测试简单的 Action 考虑下面的简单动作,取自本书的Redux章节: import { Injectable } from '@angular/core' ; import { NgRedux } from 'ng2-redux' ; export const ...