React/Redux:为什么 mapStateToProps() 会使我的数组存储状态消失?

React/Redux: Why does mapStateToProps() make my store state of an array disappear?

在我的商店中,我有一个形状为 {posts: [{...},{...}]} 的状态:但是当我在 Home.js 中使用 mapStateToProps() 时,状态 returns {posts: []} ,带有一个空数组(商店状态中曾经有一个数组)。

我是在使用 mapStateToProps() 不正确,还是问题源于 Redux 循环的其他部分?

API fetch 我正在使用,暂时位于actions.js

// api

const API = "http://localhost:3001"

let token = localStorage.token
if (!token) {
    token = localStorage.token = Math.random().toString(36).substr(-8)
}

const headers = {
    'Accept': 'application/json',
    'Authorization': token
}

// gets all posts
const getAllPosts = token => (
    fetch(`${API}/posts`, { method: 'GET', headers })
);

动作和动作创建者,使用 thunk 中间件:

// actions.js

export const REQUEST_POSTS = 'REQUEST_POSTS';
function requestPosts (posts) {
    return {
        type: REQUEST_POSTS,
        posts
    }
}

export const RECEIVE_POSTS = 'RECEIVE_POSTS';
function receivePosts (posts) {
    return {
        type: RECEIVE_POSTS,
        posts,
        receivedAt: Date.now()
    }
}

// thunk middleware action creator, intervenes in the above function
export function fetchPosts (posts) {
    return function (dispatch) {
        dispatch(requestPosts(posts))
        return getAllPosts()
               .then(
                    res => res.json(),
                    error => console.log('An error occured.', error)
                )
               .then(posts => 
                    dispatch(receivePosts(posts))
                )
    }
}

减速器:

// rootReducer.js

function posts (state = [], action) {
    const { posts } = action

    switch(action.type) {
        case RECEIVE_POSTS :
            return posts;
        default : 
            return state;
    }
}

临时包含 Redux 存储的根组件:

// index.js (contains store)

const store = createStore(
  rootReducer,
  composeEnhancers(
    applyMiddleware(
        logger, // logs actions
        thunk // lets us dispatch() functions
    )
  )
)

store
  .dispatch(fetchPosts())
  .then(() => console.log('On store dispatch: ', store.getState())) // returns expected

ReactDOM.render(
    <BrowserRouter>
        <Provider store={store}>
            <Quoted />
        </Provider>
    </BrowserRouter>, document.getElementById('root'));
registerServiceWorker();

主要成分:

// Home.js
function mapStateToProps(state) {
    return {
        posts: state
    }
}


export default connect(mapStateToProps)(Home)

在 Home.js 组件中,console.log('Props', this.props) returns {posts: []},我期望 {posts: [{...},{...}]} .

*** 编辑: 在 dispatch 之前的 action 和 reducer 中添加 console.log() 之后,控制台输出如下: Console output link (not high enough rep to embed yet)

redux store 应该是一个对象,但它似乎在根 reducer 中被初始化为一个数组。您可以尝试以下方法:

const initialState = {
    posts: []
}

function posts (state = initialState, action) {

    switch(action.type) {
        case RECEIVE_POSTS :
            return Object.assign({}, state, {posts: action.posts})
        default : 
            return state;
    }
}

然后在你的 mapStateToProps 函数中:

function mapStateToProps(state) {
    return {
        posts: state.posts
    }
}