redux模板中的错误我该写哪里来修复它



我有一个很小的问题,但我的强迫症无法解决。如果我们用npx安装redux-react模板(npx-create-react-app-my-template-redux),我们可以发现incrementIfOddreducer只适用于正数。

export const incrementIfOdd = (amount) => (dispatch, getState) => {
const currentValue = selectCount(getState());
if (currentValue % 2 === 1) {
dispatch(incrementByAmount(amount));
}
};

但是我们可以用(currentValue%2!==0)替换(currentValue%2==1),它会很好地工作。

export const incrementIfOdd = (amount) => (dispatch, getState) => {
const currentValue = selectCount(getState());
if (currentValue % 2 !== 0) {
dispatch(incrementByAmount(amount));
}
};

我的问题是,我在哪里重新提出这个问题?thxFilip

您可以在此处记录问题:

https://github.com/reduxjs/cra-template-redux

要查找Create React App模板的未来维护者,请在npm中搜索cra-template-+名称。。。在这种情况下为CCD_ 2。

相关内容

  • 没有找到相关文章

最新更新