警告:失败的道具类型:道具' createccourse '被标记为需要在' CoursesPage ',但它的值是'



我的代码在没有mapDispatchToProps函数的情况下工作,并在handlessubmit和CoursesPage.propTypes设置dispatch函数,而不是使用createCourse。为了使用mapDispatchToProps,我更新了CoursesPage.js代码,有些东西已经坏了。这是我在sandbox

的代码

你有两个问题:

  1. 您需要将mapDispatchToProps传递给connect
export default connect(mapStateToProps, mapDispatchToProps)(CoursesPage);
  1. createCourse不是道具,它是你要导入的函数

最新更新