书栈网 · BookStack 本次搜索耗时 0.031 秒,为您找到 919 个相关结果.
  • 减少样板代码

    1084 2018-02-14 《Redux 中文文档》
    缩减样板代码 Actions Action Creators actionCreators.js AddTodo.js Action Creators 生成器 异步 Action Creators actionCreators.js UserInfo.js 注意 actionCreators.js UserInfo.js ...
  • menu

    880 2019-08-20 《React in patterns》
    Summary Foundation Data flow Good to know Summary Summary In brief Foundation Communication Input Output Event handlers Composition Using React’s children API ...
  • Recipes

    598 2019-06-02 《Redux Document》
    Recipes: Index Configuring Your Store Usage With TypeScript Migrating to Redux Using Object Spread Operator Reducing Boilerplate Server Rendering Writing Tests Computing ...
  • 排错

    977 2018-02-14 《Redux 中文文档》
    排错 dispatch action 后什么也没有发生 永远不要直接修改 reducer 的参数 不要忘记调用 dispatch(action) TodoActions.js AddTodo.js AddTodo.js 确保 mapStateToProps 是正确的 其它问题 排错 这里会列出常见的问题和对应的解决方案。虽然...
  • Reducers

    576 2019-06-02 《Redux Document》
    Redux FAQ: Reducers Table of Contents Reducers How do I share state between two reducers? Do I have to use combineReducers? Further information Do I have to use the switch state...
  • Middleware

    603 2019-06-02 《Redux Document》
    Middleware Understanding Middleware Problem: Logging Attempt #1: Logging Manually Attempt #2: Wrapping Dispatch Attempt #3: Monkeypatching Dispatch Problem: Crash Reporting At...
  • 进化 Flux

    进化 Flux 什么是 pure function 进化 Flux 我们可以先通过对比 Redux 和 Flux 的实现来感受一下 Redux 带来的惊艳。 首先是 action creators,Flux 是直接在 action 里面调用 dispatch: export function addTodo ( text ) { ...
  • 数据流

    1048 2018-02-14 《Redux 中文文档》
    数据流 下一步 高级用户使用注意 数据流 严格的单向数据流 是 Redux 架构的设计核心。 这意味着应用中所有的数据都遵循相同的生命周期,这样可以让应用变得更加可预测且容易理解。同时也鼓励做数据范式化,这样可以避免使用多个且独立的无法相互引用的重复数据。 如果这些理由还不足以令你信服,读一下 动机 和 @dan_abramov /the-...
  • 搭配 React Router

    990 2018-02-14 《Redux 中文文档》
    搭配 React Router 安装 React Router 配置后备(fallback) URL 使用 Create React App 须知 配置 Express 配置 WebpackDevServer 连接 React Router 和 Redux 应用 components/Root.js 通过 React Router 导航 c...
  • Elm

    Elm CLI commands elm-repl elm-reactor elm-make elm-package notable commands Core language strings number functions conditionals lists List methods Tuples Work flo...