箭头体周围有意外的块语句?为什么我不能回来?

时间:2018-01-24 22:24:05

标签: javascript eslint

以下是什么问题? ESLIST给出错误:Unexpected block statement surrounding arrow body

  myFunIs = () => {
    return parser(this.state.myParam, 'color');
  }

我很感激帮助

1 个答案:

答案 0 :(得分:4)

  

这是预期的行为。如果return是箭头函数体内唯一的语句,则不需要块语句

 myFunIs = () => parser(this.state.myParam, 'color');