亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

redux的核心是什么

發布時間:2020-12-07 11:09:50 來源:億速云 閱讀:162 作者:小新 欄目:web開發

這篇文章給大家分享的是有關redux的核心是什么的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

概念

redux是一種架構模式,可以和react、vue結合使用。

解決的問題

優雅地修改共享數據狀態,避免狀態在父子組件的連鎖改動(子組件多的話改起來麻煩)及外部改動造成的不必要(難以排除)問題,所以所有的改動強橫通過一個方法(dispatch)修改。

redux的核心是什么

實現步驟

//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的核心是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

政和县| 马尔康县| 定襄县| 乌拉特后旗| 茌平县| 昔阳县| 泸州市| 酒泉市| 乡城县| 利川市| 如东县| 台中县| 潢川县| 泾源县| 石渠县| 时尚| 南乐县| 麦盖提县| 舞钢市| 汉阴县| 五河县| 江北区| 扎鲁特旗| 崇左市| 惠州市| 商洛市| 尼勒克县| 扎兰屯市| 阿坝| 吴堡县| 山丹县| 台山市| 林周县| 封丘县| 凉城县| 元谋县| 滨州市| 新晃| 天全县| 顺昌县| 会宁县|