1
我試圖在進入頁面時調度動作,但由於某種原因它導致被調度動作的無限循環。從onEnter調度動作時超出最大調用堆棧大小
這裏是我的代碼:
const routes = (store) => {
const test = (nextState, replace, callback) => {
Promise.resolve(store.dispatch({type: 'test'})).then(callback());
};
return (
<Route path="/" component={App}>
<IndexRoute component={LoginPage}/>
<Route path="/home" component={HomePage} onEnter={test}/>
</Route>
);
};
我試着更換一個簡單的console.log調度,這不會發生。 這只是當我試圖派遣從輸入