我是靠谱客的博主 开朗小鸭子,最近开发中收集的这篇文章主要介绍Super expression must either be null or a function, not undefined,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近在看react……,然后出现这个错误,

class Clocks extends ReactDOM.Component{
constructor(props){
super(props);
this.state ={date:new Date()};
}
render(){
return(
<div>
<h1>Hello world</h1>
<h1>{this.state.date.toLocaleTimeString()}</h1>
</div>
);
}
}

百度看到有位大佬(https://www.cnblogs.com/mianbaodaxia/p/6170726.html)说是Component写错成Compotent,但是自己的并不是这个错误,深受启发,仔细观察才发现是把

class Clocks extends React.Component

写错成

class Clocks extends ReactDOM.Component

emmm……面壁思过去

最后

以上就是开朗小鸭子为你收集整理的Super expression must either be null or a function, not undefined的全部内容,希望文章能够帮你解决Super expression must either be null or a function, not undefined所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部