React.cloneElement 不精确类型与精确类型不兼容

Mat*_*isk 6 flowtype

使用 React.cloneElement 会导致我似乎无法解决的类型错误。

class Dropdown extends React.Component<{ children?: React.ChildrenArray<React.Element<typeof Item>> }> {
     render() {
         React.Children.map(this.props.children, child => 
             React.cloneElement(child)
         );
     }
}
Run Code Online (Sandbox Code Playgroud)

以下类型错误:

91:         React.cloneElement(child, {
                            ^^^^^ read-only array type. Inexact type is incompatible with exact type
            v--------------------------
91:         React.cloneElement(child, {
92:           onClick: () => this.setState({ open: false }),
93:         }),
           -^ exact type: object type
Run Code Online (Sandbox Code Playgroud)

据我所知,这是将 React.Children 与 React.cloneElement 结合使用的正确方法。

zed*_*d45 0

我不确定您使用的是哪个版本的流程,并且我没有 的函数定义<Item>,但当您从子级中删除 时,它似乎可以工作?,因此需要数组:

//@flow
import * as React from 'react'

const Item = () => 'hello world'

class Dropdown extends React.Component<{ children: React.ChildrenArray<React.Element<typeof Item>> }> {
     render() {
         React.Children.map(this.props.children, child => 
             React.cloneElement(child)
         );
     }
}
Run Code Online (Sandbox Code Playgroud)
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
Run Code Online (Sandbox Code Playgroud)

SO编辑器似乎不喜欢Flow,所以尝试“尝试Flow”,在这里:https: //flow.org/try/#0PTACDMBsHsHcCgCWBbADtATgFwAQCocBDAZxwCUBTQgY13A2mRwHIMrbn55roA7Y3AEksFJgF4cACgCUOMQD4WACwqQYOWJkgATTt0glSAEQaptcXjgoAPEb22lK NLADoAwo3S8KvLAB4AbxxqJUQdNl4ALnJ2VzdQ8J8AQQwMQgBPPydaFwBRSFEffyx01ApocBxhUXlFAF9FAPgcFpaI7QoMGRwm1r6W7LiE7QiXZEJUSSxQ4hdUU1mQsJGfABpg4blFZv7dmOcXahhvfML fSSWdaR296QBuG5a6+DqGA