<react.fragment>或&lt;&gt; <!---->上的流错误,但不是<fragment>

时间:2018-03-16 12:15:57

标签: reactjs flowtype react-fragment

我正在使用react v16.3.0 flow-bin v0.69.0

将反应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,流程不会抱怨。

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 开始为state that flow has support for react Fragments提供文档。

这实际上是否仍然存在支持差距?或者我做错了什么?也许我不知何故有一个过时的lib def或配置错误的东西?我找不到任何谷歌搜索错误消息,这导致我怀疑这是我的设置问题。此外,我不能完全相信这不会成功。

3 个答案:

答案 0 :(得分:7)

您必须使用import * as React from 'react'来解决此问题:)

答案 1 :(得分:6)

此提交中包含定义中包含React.Fragment的修复程序: https://github.com/facebook/flow/commit/b76ad725177284681d483247e89739c292ed982b

它应该在流0.71

中可用

答案 2 :(得分:0)

很简单:

import * as React from 'react'

const Component = (): React.Element<typeof React.Fragment> => (
  <>
    <span> / </span>
    <span> \ </span>
  </>
)

export default Component