reactjs – 在React 16.2中给出意外令牌错误的碎片

前端之家收集整理的这篇文章主要介绍了reactjs – 在React 16.2中给出意外令牌错误的碎片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下组件呈现一系列组件.但是,我下载了React 16.2并尝试使用片段而不是div,但是我收到以下错误
Error in ./src/containers/answers.js
Syntax error: Unexpected token (24:5)

  22 |     
  23 | return (
> 24 |     <>
     |      ^
  25 |       {AnswersCard}
  26 |     </>
  27 |    )

当片段应该能够替换React 16.2中的div时,为什么会出现此错误

question ? 
    AnswersCard = ( question.answers.sort(function(a,b) { return (a.count < b.count) ? 1 : ((b.count > a.count) ? -1 : 0)} 
    ).map(answer =>  
    <Answer key={answer.id} answer={answer} questionId={question.id} />
    )) : AnswersCard = ( <p>Loading...</p> )

return (
    <>
      {AnswersCard}
    </>
   )
  }
}
根据 documentation,语法<>< />并非所有工具都支持这些工具,他们建议您使用< React.Fragment>代替

查看支持片段语法的this文档

原文链接:https://www.f2er.com/react/301102.html

猜你在找的React相关文章