React Redux Reducer:'this.props.tasks.map不是函数'错误

时间:2016-11-04 04:19:54

标签: javascript reactjs redux react-redux

我正在制作一个React Redux示例;但是,我遇到了一个问题并得到以下错误:

  

TypeError:this.props.tasks.map不是函数   [了解更多]

我尝试了很多东西,我似乎无法理解为什么这不起作用。我相信当allReducers从Tasks函数映射任务时。我已经来回修复了这个错误但是它会抱怨它是未定义的。我会修复它并循环回到这个问题。任何帮助,将不胜感激。我确定我犯了一个简单的错误。以下是我的以下文件

App.js

import React from 'react';
import TaskBoard from "../containers/task-board";
require('../../scss/style.scss');

const App = () => (
    <div>
        <h2>Task List</h2>
        <hr />
        <TaskBoard/>
    </div>
);

export default App;

index.js

    import {combineReducers} from 'redux';
    import {Tasks} from './reducer-tasks';
    const allReducers = combineReducers({
        tasks: Tasks
    });

    export default allReducers

任务board.js

    import React, {Component} from 'react';
    import {bindActionCreators} from 'redux';
    import {connect} from 'react-redux';
    import {deleteTaskAction} from '../actions/ActionIndex';
    import {editTaskAction} from '../actions/ActionIndex';
    class TaskBoard extends Component {
        renderList() {
            return this.props.tasks.map((task) => {
                if(task.status == "pending"){
                    return (<li key={task.id}>
                        {task.id} {task.description}
                        <button type="button">Finish</button>
                        <button type="button">Edit</button>
                        <button onClick={() => this.props.deleteTask(task)} type="button">Delete</button>
                    </li>
                );
            }
        });
    }
    render() {
        if (!this.props.tasks) {
            console.log(this.props.tasks);
            return (<div>You currently have no tasks, please first create one...</div>);
        }
        return (
            <div>
                {this.renderList()}
            </div>
        );
    }
}
    function mapStateToProps(state) {
        return {
            tasks: state.tasks
        };
    }
    function matchDispatchToProps(dispatch){
        return bindActionCreators(
        {
            deleteTask: deleteTaskAction,
            editTask: editTaskAction
        }, dispatch)
    }
    export default connect(mapStateToProps,matchDispatchToProps)(TaskBoard);

减速器-tasks.js

const initialState = {
	tasks: [
        {
            id: 1,
            description: "This is a task",
            status: "pending"
        },
        {
            id: 2,
            description: "This is another task",
            status: "pending"
        },
        {
            id: 3,
            description: "This is an easy task",
            status: "pending" 

        }
	]
}

export function Tasks (state = initialState, action) {
    switch (action.type) {
        case 'ADD_TASK':
            return Object.assign({}, state, {
            	tasks: [
            		...state.tasks,
            		{
            			description: action.text,
            			status: action.status
            		}
            	]
            })
            break;

        case 'EDIT_TASK':
            return action.payload;
            break;

        case 'DELETE_TASK':
            return Object.assign({}, state, {
            	status: action.status
            })
            break;
    }

    return state;
}

actionindex.js

    export const addTaskAction = (task) => {
        return {
            type: 'ADD_TASK',
            text: "Here is a sample description",
            status: "pending"
        }
    };
    export const deleteTaskAction = (task) => {
        return {
            type: 'DELETE_TASK',
            status: "deleted"
        }
    };
    export const editTaskAction = (task) => {
        return {
            type: 'EDIT_TASK',
            payload: task
        }
    };

3 个答案:

答案 0 :(得分:3)

这是因为功能&#39;映射&#39;只能用于数组,而不能用于对象。

如果在task-board.js的render函数中打印出this.props.tasks,你会发现它是一个包含tasks数组的OBJECT,而不是实际的任务数组本身。 / p>

所以要解决这个问题很容易,而不是:

    return this.props.tasks.map((task) => {

它的

    return this.props.tasks.tasks.map((task) => {

然后它可以工作

答案 1 :(得分:0)

根据您的减速器组成,您的initialState应为:

const initialState = [
    {
        id: 1,
        description: "This is a task",
        status: "pending"
    },
    {
        id: 2,
        description: "This is another task",
        status: "pending"
    },
    {
        id: 3,
        description: "This is an easy task",
        status: "pending" 

    }
]

答案 2 :(得分:0)

如果您在获取数据之前尝试渲染,请检查服务器代码。如果是这种情况,redux/react 会抛出 .map 不是函数。

始终获取数据,使用中间件,然后尝试从服务器呈现客户端。

我在 redux 中遇到了同样的问题,问题是我在渲染客户端后试图获取数据