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

前端之家收集整理的这篇文章主要介绍了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.看看.

猜你在找的React相关文章