reactjs – 如何设置Ember像Immutablejs和Redux和Flux和React中的计算属性

我习惯于在 Ember Object Model中计算属性.这是一种方便的方式来指定依赖于其他属性的计算属性.

说fullName取决于firstName和lastName,我可以将计算属性设置为函数computeProperties,并在每次更改时调用computeProperties.

例:

function computeFullName(state) {
  const fullName = state.get('firstName') + state.get('lastName');
  const nextState = state.set('fullName',fullName);
  return nextState;
}

function computeProperties(state) {
  const nextState = computeFullName(state);
  return nextState;
}

// store action handler
[handleActionX](state) {

  let nextState = state.set('firstName','John');
  nextState = state.set('lastName','Doe');

  nextState = computeProperties(nextState);

  return nextState;
}

有没有办法自动设置计算的属性,所以我不必每次调用额外的功能.在Redux或ImmutableJS.

Redux作者在这里.

Using reselect as suggested by WildService是要走的路.我认为我们不会把它包含在核心中,因为重新选择的工作很好,我们很好,它是一个单独的图书馆.

我想注意几件事情:

>即使重新选择,也不想在reducer中计算数据.选择器应该在由reducer管理的状态下运行.换句话说,选择器是Redux存储状态和组件之间的一步 – 它们不在reducer中.重要的是,您可以将Redux状态归一化,以便更新.
>我们实际上鼓励您在相关的reducer旁边定义选择器,这样当您更改状态时,您不必更改组件 – 而是使用选择器.你可以在Redux folder of Flux Comparison看到一个例子
>我们有一个documentation page introducing reselect and describing how to use it for computing derived data.看看.

相关文章

导入moment 使用方式 年月日,时分秒 星期几 相对时间 7天后 2小时后 明天 将毫秒转换成年月日
@ 一、前言 为什么介绍redux-actions呢? 第一次见到主要是接手公司原有的项目,发现有之前的大佬在处理...
十大React Hook库 原文地址:https://dev.to/bornfightcompany/top-10-react-hook-libraries-4065 原文...
React生命周期 React的生命周期从广义上分为挂载、渲染、卸载三个阶段,在React的整个生命周期中提供很...
React虚拟DOM的理解 Virtual DOM是一棵以JavaScript对象作为基础的树,每一个节点可以将其称为VNode,用...
React中JSX的理解 JSX是快速生成react元素的一种语法,实际是React.createElement(component, props, ....