中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現重置Redux狀態數據的方法

發布時間:2021-06-04 15:09:32 來源:億速云 閱讀:333 作者:小新 欄目:web開發

這篇文章主要介紹如何實現重置Redux狀態數據的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

在 Redux 使用過程中,通常需要重置 store 的狀態,比如應用初始化的時候、用戶退出登錄的時候,這樣能夠避免數據殘留,避免 UI 顯示了上一個用戶的數據,容易造成用戶數據泄露。

最簡單的實現方法就是為每個獨立的 store 添加RESET_APP 的 action,每次需要 reset 的時候,dispatch 這個 action 即可,如下代碼

const usersDefaultState = [];

const users = (state = usersDefaultState, { type, payload }) => {
 switch (type) {
  case "ADD_USER":
   return [...state, payload];
  default:
   return state;
 }
};

添加 reset action 后:

const usersDefaultState = []

const users = (state = usersDefaultState, { type, payload }) => {
 switch (type) {
  case "RESET_APP":
   return usersDefaultState;
  case "ADD_USER":
   return [...state, payload];
  default:
   return state;
 }
};

這樣雖然簡單,但是當獨立的 store 較多時,需要添加很多 action,而且需要很多個 dispatch 語句去觸發,比如:

dispatch({ type: RESET_USER });
dispatch({ type: RESET_ARTICLE });
dispatch({ type: RESET_COMMENT });

當然你可以封裝一下代碼,讓一個RESET_DATA 的 action 去觸發多個 reset 的 action,避免業務代碼看上去太亂。

不過本文介紹一種更優雅的實現,需要用到一個小技巧,看下面代碼:

const usersDefaultState = []
const users = (state = usersDefaultState, { type, payload }) => {...}

當函數參數 state 為 undefined 時,state 就會去 usersDefaultState 這個默認值,利用這個技巧,我們可以在 rootReducers 中檢測 RESET_DATA action,直接賦值 undefined 就完成了所有 store 的數據重置。實現代碼如下:

我們通常這樣導出所有的 reducers

// reducers.js
const rootReducer = combineReducers({
 /* your app's top-level reducers */
})

 
export default rootReducer;

先封裝一層,combineReducers 返回 reducer 函數,不影響功能

// reducers.js
const appReducer = combineReducers({
 /* your app's top-level reducers */
})

const rootReducer = (state, action) => {
 return appReducer(state, action)
}

export default rootReducer;

檢測到特定重置數據的 action 后利用 undefined 技巧 (完整代碼)

// reducers.js
const appReducer = combineReducers({
 /* your app's top-level reducers */
})

const rootReducer = (state, action) => {
 if (action.type === 'RESET_DATA') {
  state = undefined
 }

 return appReducer(state, action)
}

以上是“如何實現重置Redux狀態數據的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

唐山市| 八宿县| 金坛市| 将乐县| 修文县| 文化| 湄潭县| 镇雄县| 简阳市| 泰兴市| 平顶山市| 红河县| 美姑县| 武夷山市| 永修县| 扶余县| 高台县| 汉源县| 武义县| 治县。| 邵武市| 崇信县| 志丹县| 基隆市| 民勤县| 大兴区| 淮南市| 凉城县| 巴里| 定襄县| 三门峡市| 余江县| 鸡泽县| 小金县| 鄢陵县| 额敏县| 江油市| 宜兴市| 综艺| 北流市| 安泽县|