我正在使用react
v16.3.0和flow-bin
v0.69.0
使用 react Fragments或类似这样<React.Fragment>
的简写语法<></>
import React from 'react'
const ComponentA = () => (
<React.Fragment>
<div>Component</div>
<div>A</div>
</React.Fragment>
)
const ComponentB = () => (
<>
<div>Component</div>
<div>B</div>
</>
)
Flow 抱怨以下错误(这两者都是相同的错误,仅显示ComponentA
此处的输出)
Cannot get React.Fragment because property Fragment is missing in object type [1].
24│ const ComponentA = () => (
25│ <React.Fragment>
26│ <div>Component</div>
27│ <div>A</div>
28│ </React.Fragment>
/private/tmp/flow/flowlib_2349df3a/react.js
251│ declare export default {|
252│ +DOM: typeof DOM,
253│ +PropTypes: typeof PropTypes,
254│ +version: typeof version,
255│ +initializeTouchEvents: typeof initializeTouchEvents,
256│ +checkPropTypes: typeof checkPropTypes,
257│ +createClass: typeof createClass,
258│ +createElement: typeof createElement,
259│ +cloneElement: typeof cloneElement,
260│ +createFactory: typeof createFactory,
261│ +isValidElement: typeof isValidElement,
262│ +Component: typeof Component,
263│ +PureComponent: typeof PureComponent,
264│ +Children: typeof Children,
265│ |};
但是,通过显式导入Fragment
, flow 不会抱怨。
import { Fragment, default as React } from 'react'
const ComponentC = () => (
<Fragment>
<div>Component</div>
<div>C</div>
</Fragment>
)
这里发生了什么?我想使用<></>
Fragment 速记语法,而这个问题暂时阻止了我这样做。
当我深入react.js
研究错误中引用的 lib def 时,似乎该错误实际上是正确的 - 定义了导出,Fragment
并且未将Fragment定义为默认导出的属性。
但是流文档声明流 从v0.59开始支持反应片段。
那么这实际上是仍然存在的支持差距吗?还是我做错了什么?也许我不知何故有一个过时的 lib def 或者配置错误?我找不到任何在谷歌上搜索错误消息的内容,这让我怀疑这是我的设置问题。我也不敢相信这不能解决问题。