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

    3181 2019-06-02 《Redux Document》
    Managing Normalized Data Standard Approaches Simple Merging Slice Reducer Composition Other Approaches Task-Based Updates Redux-ORM Managing Normalized Data As mentioned ...
  • Afterthoughts

    Afterthoughts Afterthoughts The examples outlined above are just one approach to unit testing in Redux. During actual development it might prove to be too costly to maintain te...
  • 管理范式化数据

    849 2018-02-14 《Redux 中文文档》
    管理范式化数据 标准方法 简单合并 reducer 切片组合 其他方法 基于任务的更新 Redux-ORM 管理范式化数据 如 范式化数据 章节所提及的,我们经常使用 Normaizr 库将嵌套式数据转化为适合集成到 store 中的范式化数据。但这并不解决针对范式化的数据进一步更新后在应用的其他地方使用的问题。根据喜好有很多种方法可供...
  • createStore

    626 2019-06-02 《Redux Document》
    createStore(reducer, [preloadedState], [enhancer]) Arguments Returns Example Tips createStore(reducer, [preloadedState], [enhancer]) Creates a Redux store that holds the c...
  • Composing UX Variations

    使用组合去实现不同的交互功能 例子 参考资料: 使用组合去实现不同的交互功能 在React的实践中, 将小的可复用的组件组合成功能更复杂的组件是一种推荐的实践. 我们怎么保证组件的复用性? 我们需要保证组件是纯的UI组件, 传入同样的props总会渲染出相同的组件.(木偶组件) 复用意味着什么? 在组件内部没有与外部的数据交互(这...
  • 4.3 Containers & Components

    4.3 Containers & Components 4.3 Containers & Components 1.Presentational and Container Components Presentational Components Container Components Purpose ——- ...
  • Taro 组成

    NPM 包 描述 @tarojs/taro Taro 运行时框架 @tarojs/taro-h5 Taro H5 运行时框架 @tarojs/taro-rn Taro React Native 运行时框架 @tarojs/taro-weapp Taro 微信小程序运行时框架 @tarojs/taro-swan Taro 百度智能小程序运...
  • Troubleshooting

    638 2019-06-02 《Redux Document》
    Troubleshooting Nothing happens when I dispatch an action Never mutate reducer arguments Don't forget to call dispatch(action) TodoActions.js AddTodo.js AddTodo.js Make sure m...
  • 常见问题

    728 2018-02-14 《Redux 中文文档》
    Redux 常见问题 链接 Redux 常见问题 链接 综合 Reducer 组织 State 创建 Store Action 代码结构 性能 React Redux 其它
  • 创建Store

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