如果在地图功能内:出现意外错误

时间:2019-05-01 10:13:49

标签: javascript arrays reactjs function if-statement

我在网上找到一些代码示例时遇到意外错误。我认为我犯了一些错误,但是与这里的其他示例相比,我找不到错误。我试图在地图函数中包含一个if函数:

const compProfileRemoveHandler = compProfileId => {
    todoList.map(profile =>(
     if (profile.id !== compProfileId) {some code}
))};

有人知道我为什么会收到以下错误:“分析错误:意外的令牌”(并且在语句下标记了“ if”)。

非常感谢您的帮助!

1 个答案:

答案 0 :(得分:4)

尝试:

const compProfileRemoveHandler = compProfileId => {
    todoList.map(profile => {
     if (profile.id !== compProfileId) {some code}
} )};