您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關redux的核心是什么的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
概念
redux是一種架構模式,可以和react、vue結合使用。
解決的問題
優雅地修改共享數據狀態,避免狀態在父子組件的連鎖改動(子組件多的話改起來麻煩)及外部改動造成的不必要(難以排除)問題,所以所有的改動強橫通過一個方法(dispatch)修改。
實現步驟
//state(數據)和action(控制修改)后的數據 function reducer (state, action) { /!* 初始化 state 和 switch case *!/ } // 通過reducer獲取state // 執行action // 監聽數據變化 const store = createStore(reducer) // 監聽數據變化重新渲染頁面 // 通過觀察者模式監聽數據變化,避免沒有狀態改變的頻繁渲染 store.subscribe(() => renderApp(store.getState())) // 首次渲染頁面 renderApp(store.getState())
示例
const usersReducer = (state, action) => { if (!state) return []; switch (action.type) { case "ADD_USER": return [...state, action.user] case "DELETE_USER": return [...state.slice(0, action.index), ...state.slice(action.index + 1)] case "UPDATE_USER": let user = { ...state[action.index], ...action.user, } return [ ...state.slice(0, action.index), user, ...state.slice(action.index + 1), ] default: return state } } //state(數據)和dispatch(控制修改)封裝起來 function createStore (reducer) { let state = null const listeners = [] const subscribe = (listener) => listeners.push(listener) const getState = () => state const dispatch = (action) => { state = reducer(state, action) // 覆蓋原對象 // console.log(listeners) listeners.forEach((listener) => { // console.log(listener) listener() }) } dispatch({}) // 初始化 state return { getState, dispatch, subscribe } } const store = createStore(usersReducer); console.log(store.getState()); //增 store.dispatch({ type: 'ADD_USER', user: { username: 'Lucy', age: 12, gender: 'female' } }); console.log(store.getState()); //改 store.dispatch({ type: 'UPDATE_USER', index: 0, user: { username: 'Tomy', age: 12, gender: 'male' } }); console.log(store.getState()); //刪 store.dispatch({ type: 'DELETE_USER', index: 0 // 刪除特定下標用戶 }); console.log(store.getState());
感謝各位的閱讀!關于redux的核心是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。