使用Ramda更新mapStateToProps

时间:2019-05-16 10:28:07

标签: ramda.js

以下条目用于项目中,很明显state参数经常使用

const props = state => ({
  name: getUserName(state),
  role: getUserRole(state),
  region: getUserRegion(state),
});

如何使用ramda更新它?

1 个答案:

答案 0 :(得分:2)

您可以使用R.applySpec

const mapStateToProps = R.applySpec({
  name: getUserName,
  role: getUserRole,
  region: getUserRegion,
});