gpt4 book ai didi

reactjs - 如何在 React-Router onEnter 中获取存储/调度?

转载 作者:行者123 更新时间:2023-12-03 13:29:10 28 4
gpt4 key购买 nike

我没有使用 Redux-Router(也许我必须这样做?),但我的路由器由 Provider 包装,并且存储正在传递给它。

我想在 onEnter 处理程序中读取状态和分派(dispatch)。

最佳答案

我只是将我的路由包装在一个返回它们的函数中。

这允许您将 redux 存储作为参数传递

任何 onEnter/onExit 函数也在那里定义,因此它们可以访问该 store 参数,并且可以 dispatch() 东西。

import React from 'react'
import { IndexRoute, Route } from 'react-router'

import App from './components/app'
import FourOhFour from './components/pages/404'
import Home from './components/home'
import LogIn from './components/account/log_in'
import ResetPassword from './components/account/reset_password'
import SignUp from './components/account/sign_up'

export function getRoutes (store) {
function doSomething (thing) {
store.dispatch(addToDoActionCreator(thing))
}

function authenticate (nextState, replaceState) {
const { currentUser } = store.getState();

if ( !currentUser ) {
replaceState(null, '/log-in');
}
}

return (
<Route path='/' component={App}>
<IndexRoute component={Home} onEnter={(nextState, replaceState)=>{doSomething('get coffee')}} />

<Route path='log-in' component={LogIn} onEnter={authenticate} />
<Route path='sign-up' component={SignUp} />
<Route path='reset-password' component={ResetPassword} />

<Route path="*" component={FourOhFour}/>
</Route>
);
}

在服务器端(对我来说是express.js),我很早就使用中间件建立了一个redux存储。像这样的东西。

server.use((req, res, next) => {
const createStoreWithMiddleware = applyMiddleware(
thunkMiddleware
)(createStore);
res.store = createStoreWithMiddleware(rootReducer);

next();
}

现在商店已附加到响应对象,并且可以由其他中间件/路由使用。他们可以获取状态 (res.store.getState()) 并分派(dispatch)更新状态。

关于reactjs - 如何在 React-Router onEnter 中获取存储/调度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33643290/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com