为什么Thunk-Redux将对象转换为字符串?

时间:2019-02-17 02:35:40

标签: reactjs redux react-redux redux-thunk

我遇到了一个 thunk-redux 的奇怪问题。我正在编写一个调用公共API并在表中显示数据的 React-Redux 应用。但是,当我合并 thunk中间件来处理异步API调用时,在将操作分派给reducer之后,我的数据将被字符串化。

index.js(动作创建者)

export const FETCHING_DATA = 'FETCHING_DATA';
export const FETCH_SUCCESS = 'FETCH_SUCCESS';
export const ERROR = 'ERROR';

export const getData = () => {
    return {
        type : FETCHING_DATA
    }
}

export const getDataSuccess = (data) => {
    return {
        type : FETCH_SUCCESS,
        payload: data
    }
}

export const getDataFailure = () => {
    return {
        type : ERROR
    }
}

export function searchCVE(cve){
    
    const url = `${CVE_URL}api/cve/${cve}`;
    return dispatch => {
        dispatch(getData());

        fetch(PROXY + url)
        .then(blob => blob.json())
        .then(data => {
            console.log('Request: ', data);
            dispatch(getDataSuccess(data))
        })
        .catch(e => {
            console.log(e);
            dispatch(getDataFailure(e.message))
        });

    }
}

data_reducer.js(减速器)

import {FETCHING_DATA ,FETCH_SUCCESS, ERROR } from '../actions/index.js';

const initialState = {
    payload:[],
    fetching: false,
    error: false
}
export default function(state=initialState, action){
    console.log('Got CVE: ', action);

    switch (action.type){
        case FETCHING_DATA: return {payload:[], fetching: true, ...state}
        case FETCH_SUCCESS: return [action.payload, ...state]
        case ERROR: return {payload:[], error: true, ...state}
             
    }
    return state;

}

正如您在 index.js 操作创建者中看到的那样,console.log('Request: ', data);显示了我想要的JSON对象。但是,当我在表组件中{console.log('TEST: ' + this.props.cve)}时,控制台显示:

  

测试:[对象对象]

我在应用程序中的任何时候都没有对数据进行“字符串化”-为什么 thunk-redux 可以/在哪里将数据转换为字符串?我感谢社区提供的任何见解。

1 个答案:

答案 0 :(得分:0)

  

在我的应用中,我什么时候都没有对数据进行“字符串化”-thunk-redux为何/在何处可以将我的数据转换为字符串?

redux-thunk在任何情况下都无法做到这一点。是deadly simple;它所做的只是以不同的方式处理函数动作。

问题是您正在对对象进行字符串化,+加法运算符将对象强制为字符串:

{console.log('TEST: ' + this.props.cve)}

如果希望在控制台中显示对象,则应为:

{console.log('TEST: ', this.props.cve)}

或者可以在DOM中显示

<pre>{JSON.stringify(this.props.cve, null, 2)}</pre>