我是新来的反应js。
我有两条路线,比如A& B.现在我将一些值从A传递给B作为道具。如果刷新B页面,则A中的所有道具值都将消失,B页面不会呈现。我正在使用与redux的反应。
mapDispatchToProps
& mapStateToProps
函数用于在A& A之间传递值。 B路由为道具。
例如:路线A已经完成了一些计算,并将值存储在redux状态,路由B导出为connect(mapStateToProps, mapDispatchToProps)(B)
,使用mapStateToProps
,其中A&#39 ; s状态值作为道具传递给B.
请建议我在上述用例中处理浏览器刷新的最佳方法,以及在路由之间传递值的任何其他最佳方法。提前谢谢。
答案 0 :(得分:5)
您的问题涉及两个不同的问题。首先是在React / Redux应用程序中将props从一个页面传递到另一个页面,其次是在刷新页面时维护应用程序状态。
您已经描述了在基于redux的应用程序中在两个路由之间传递数据的正确方法。
这引出了第二个问题 如何在刷新页面时维护React / Redux应用程序的状态?
当刷新React / Redux应用程序时,它会再次初始化并且redux存储获取它的默认值。
如果您希望跨页面刷新或跨不同会话维护应用程序状态,则需要将状态存储在某个位置,并在应用程序初始化时加载它。
我们可以将这个问题分为三个部分:
让我们分别看看每个子问题。
存储数据的位置?
您可以使用Web Storage API在用户的浏览器中存储数据。此API提供了两种存储数据的机制:
sessionStorage和localStorage都允许您在浏览器中存储键值对,并且两者都提供相同的功能集来管理数据。
对于sessionStorage(来自MDN的示例):
// Save data to sessionStorage
window.sessionStorage.setItem('key', 'value');
// Get saved data from sessionStorage
var data = window.sessionStorage.getItem('key');
// Remove saved data from sessionStorage
window.sessionStorage.removeItem('key');
// Remove all saved data from sessionStorage
window.sessionStorage.clear();
对于localStorage:
// Save data to localStorage
window.localStorage.setItem('key', 'value');
// Get saved data from localStorage
var data = window.localStorage.getItem('key');
// Remove saved data from localStorage
window.localStorage.removeItem('key');
如何存储redux状态?
正如您已经知道的那样,Redux提供了一个createStore
函数,它接受了我们的根reducer并返回了应用程序store
。
store对象包含整个应用程序商店,并提供一些方法,包括注册侦听器的方法。
store.subscribe(listener)
可用于向商店添加更改侦听器,每次商店更新时都会调用此更改。
我们将向商店添加一个监听器,将应用程序状态保存到localStorage
。
尝试使用createStore
/**
* This function accepts the app state, and saves it to localStorage
* @param state
*/
const saveState = (state) => {
try {
// Convert the state to a JSON string
const serialisedState = JSON.stringify(state);
// Save the serialised state to localStorage against the key 'app_state'
window.localStorage.setItem('app_state', serialisedState);
} catch (err) {
// Log errors here, or ignore
}
};
/**
* This is where you create the app store
*/
const store = createStore(rootReducer);
/**
* Add a change listener to the store, and invoke our saveState function defined above.
*/
store.subscribe(() => {
saveState(store.getState());
});
如何重新加载存储的数据,并在应用再次初始化时恢复应用程序状态?
当我们使用createStore
创建我们的应用商店时,我们可以选择使用函数的第二个参数将初始状态传递给商店。
当应用程序启动时,我们将检查localStorage
是否有任何已保存的数据。如果我们找到它,我们会将其作为第二个参数发送给createStore
。
这样,当应用程序完成初始化时,它将具有与刷新页面或关闭浏览器之前相同的状态。
尝试使用createStore
/**
* This function checks if the app state is saved in localStorage
*/
const loadState = () => {
try {
// Load the data saved in localStorage, against the key 'app_state'
const serialisedState = window.localStorage.getItem('app_state');
// Passing undefined to createStore will result in our app getting the default state
// If no data is saved, return undefined
if (!serialisedState) return undefined;
// De-serialise the saved state, and return it.
return JSON.parse(serialisedState);
} catch (err) {
// Return undefined if localStorage is not available,
// or data could not be de-serialised,
// or there was some other error
return undefined;
}
};
/**
* This is where you create the app store
*/
const oldState = loadState();
const store = createStore(rootReducer, oldState);
就是这样!现在,结合最后两个代码块,您的应用程序可以跨页面刷新维护状态,甚至可以跨浏览器重新启动。
希望这会有所帮助。 干杯! :)
答案 1 :(得分:1)
您可以尝试redux-persist
或redux-storage
,
初始化商店时
createStore(reducer, [preloadedState], [enhancer])
,
您可以获取数据并将其分配给preloadedState
答案 2 :(得分:0)
尝试使用react-router
,这将基于route
呈现组件。
当应用为initialized
时,应用应获取数据并使用所需信息更新商店。
例如:在下面的示例中,当IntilizeApp
组件正在装载时,计算所需的信息并通过调度操作来更新存储。使用像componentWillMount
这样的反应生命周期方法来计算。
import {Router, Route, hashHistory} from 'react-router'
// import initializeApp
// import ComponentA
// import ComponentB
<Router history={hashHistory}>
<Route path="/" component={InitializeApp}>
<Route name="A" path="A" component={ComponentA} />
<Route name="B" path="B" component={ComponentB} />
</Route>
</Router>