以下是什么问题? ESLIST给出错误:Unexpected block statement surrounding arrow body
myFunIs = () => {
return parser(this.state.myParam, 'color');
}
我很感激帮助
答案 0 :(得分:4)
这是预期的行为。如果return是箭头函数体内唯一的语句,则不需要块语句
myFunIs = () => parser(this.state.myParam, 'color');