web
国服第一邓特蒙
#StriveForGreatness
展开
-
React初始化一个umi项目
参考https://blog.csdn.net/elite1991/article/details/86177396转载 2021-04-21 16:50:32 · 325 阅读 · 0 评论 -
ES6一点总结
前言react项目需要有constructorconstructor(props){ super(props); }或者不要构造器但不能constructor(){ }否则ReferenceError: Must call super constructor in derived class before accessing ‘this’ or returning from derived constructorconst,let1.const,let不存在变量提升,而原创 2020-06-04 16:50:48 · 315 阅读 · 0 评论 -
react学习配置
1.https://www.yuque.com/ant-design/course/wybhm92.• 组件的概念• jsx语法• 必须闭合• 顶层只能有一个标签• HTML 原生标签使用小写,自定义的组件标签首字母大写• 允许js与jsx混写,{}进入js上下文• 组件定义• 继承React.Component基类,重写render方法• 标签属性传值:this.props•...原创 2019-12-16 15:47:10 · 227 阅读 · 0 评论