以下条目用于项目中,很明显state
参数经常使用
const props = state => ({
name: getUserName(state),
role: getUserRole(state),
region: getUserRegion(state),
});
如何使用ramda更新它?
答案 0 :(得分:2)
您可以使用R.applySpec:
const mapStateToProps = R.applySpec({
name: getUserName,
role: getUserRole,
region: getUserRegion,
});