constructor报错
来源:3-2 React 中的响应式设计思想和事件绑定
慕粉3633604
2020-06-03
import React from ‘react’;
//this.state是组件的状态
function App() {
constructor(props) {
super(props);
this.state={
inputValue:‘hello’,
list:[]
};
};
return (
提交
- 学英语
- learning react
);
}
export default App;
为什么会报错
写回答
1回答
-
Dell
2020-06-07
function 函数不能写constructor,你改成class
022020-06-20
相似问题