
没有query属性。导致分页报错。
分页代码:
const pageChange = (page) => {
console.info(page);
dispatch(routerRedux.push({
pathname: '/user',
query: { page: 2 },
}));
};
报错: browser.js?1af0:49 Warning: Hash history cannot PUSH the same path; a new entry will not be added to the history stack
问题已解决 用routerRedx.replace 即可