javascript - action 請求來的資料給了reducer,reducer執行後資料沒有對應到store上是為什麼?
黄舟
黄舟 2017-06-12 09:21:45
0
1
640
// 这是reducer
export const requestUserInfo = (state = {}, action) => {
    switch(action.type) {
        case 'HEADER_RECEIVE_USERINFO':
            console.log(action.data)// 有值
            return Object.assign({}, state, action.data)
            break
        default:
            return state
    }
}
// 这是action
function receiveUserInfo (data) {
    return {
        type: 'HEADER_RECEIVE_USERINFO',
        data
    }
}


export function requestUserInfo () {
    return dispatch => {
        return axios.post('/user/getScores', qs.stringify({
                token: token,
                uid: uid
            }))
            .then(res => {
                if(res.data.status !== 200) {
                    message.error(res.data.message)
                    return state
                }

                return { ...res.data.attachment}
            })
            .then(data => {
                dispatch(receiveUserInfo(data))
            })
    }
}

action 和 reducer 都能正常執行,我在router中監聽了store,但store一直都沒變過。是我哪裡寫錯了嗎?
快來人救我,卡在這個問題一整天了,完全不知道哪裡出的問題

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全部回覆(1)
習慣沉默

Object.assign 屬於淺拷貝,只會處理第一層
state = {

a: name,
b: {
    child: {}    // 无论child怎么改变都不会触发state的change, 因为b的引用没有变
}

}

你的action.data的回傳值是不是一個物件?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板