未捕获的类型错误:_this2.props.selectBook 不是函数

IT技术 reactjs react-redux
2021-05-12 15:08:37

我是 reactjs 的新手,正在学习关于 udemy 的 react 基础课程。我在控制台日志中收到以下错误。有人可以帮助我吗?

bundle.js:21818 Uncaught TypeError: _this2.props.selectBook is not a function

任何帮助,将不胜感激。谢谢。

容器/book-list.js

import React, { Component } from 'react';
import { connect } from 'react-redux';
import { selectBook } from '../actions/index';
import { bindActionCreators } from 'redux';

class BookList extends Component {
    renderList() {
        return this.props.books.map((book) => {
            return (
                <li 
                    key={book.title} 
                    onClick={() => this.props.selectBook(book)} 
                    className="list-group-item">
                    {book.title}
                </li>
            );
        });
    }

    render() {
        return (
            <ul className="list-group col-sm-4">
                {this.renderList()}
            </ul>
        )
    }
}


function mapStateToProps(state) {
    return {
        books: state.books
    };
}

//Anythin returned from this function will end up as props
// on the BookList container
function mapDispatchToProps(dispatch) {
    // whenever selectBook is called, the result should be passed
    // to all of our reducers
    return bindActionCreators({ selectBook: selectBook }, dispatch);
}

// Promote BookList from a component to a container - it needs to know 
// about this new dispatch method, selectBook. Make it available
// as a prop.
export default connect(mapStateToProps)(BookList);

动作/ index.js

export function selectBook(book) {
    console.log('A book has been selected:', book.title);
}

组件/app.js

import React, { Component } from 'react';

import BookList from '../containers/book-list';

export default class App extends Component {
  render() {
    return (
      <div>
        <BookList />
      </div>
    );
  }
}
4个回答

自己找到了答案。

// didnt have included the mapDispatchToProps function call in below lines.
export default connect(mapStateToProps, mapDispatchToProps)(BookList);

使用import selectBook from '../actions/index'代替import { selectBook } from '../actions/index';

对于已经包含mapDispatchToProps函数调用的人,即export default connect(mapStateToProps, mapDispatchToProps)(BookList);

查看 actions/index.js 并查看您是否使用默认导出。如果不是,您将需要{}在导入 selectBook 时使用。

if (using default export) { 

    import selectBook from '../actions/index';
}
else {

    import { selectBook } from '../actions/index';
}

干杯。

确保导出 selectBook 操作,以便它在应用程序中可用

export function selectBook() {...}