反应错误。语法错误:意外令牌,应为(11:6)

时间:2018-08-15 04:23:41

标签: javascript

你能告诉我什么地方出了问题。 其在currentTodo上的给定错误:“”

class App extends Component {
  constructor(){

    super();
    this.state = {
      todos:[]
      currentTodo: ""
    };


  }

1 个答案:

答案 0 :(得分:0)

您需要使用逗号。

class App extends Component {
  constructor(){

    super();
    this.state = {
      todos:[], // <<<< NOTICE THE COMMA
      currentTodo: ""
    };


  }