6

我正在使用react v16.3.0flow-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 或者配置错误?我找不到任何在谷歌上搜索错误消息的内容,这让我怀疑这是我的设置问题。我也不敢相信这不能解决问题。

4

3 回答 3

7

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

它应该在流中可用0.71

于 2018-04-24T16:23:39.903 回答
6

你必须用它import * as React from 'react'来解决这个问题:)

于 2018-03-17T11:22:39.087 回答
1

很简单:

import * as React from 'react'

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

export default Component
于 2020-11-03T13:15:27.737 回答