React报错 Uncaught TypeError: Class extends value undefined is not a constructor or null

原因是使用class定义组件的时候 component写成小写的,如下:

class Page extends React.component

正确的应该是:(Component要大写)

class Page extends React.Component

 

posted @ 2022-09-01 16:43  秃头的铲屎官  Views(746)  Comments(0Edit  收藏  举报