你能告诉我什么地方出了问题。 其在currentTodo上的给定错误:“”
class App extends Component {
constructor(){
super();
this.state = {
todos:[]
currentTodo: ""
};
}
答案 0 :(得分:0)
您需要使用逗号。
class App extends Component {
constructor(){
super();
this.state = {
todos:[], // <<<< NOTICE THE COMMA
currentTodo: ""
};
}