react用子组件(有RouteComponentProps)报错:'match' is missing in type ''

由于子组件有RouteComponentProps,所以在父组件中援用须要传响应的属性。但考虑到假如层级较深的话一层一层传就很贫苦。而假如我们用route组件援用的话就会很简单,只须要在须要子组件的处所用routerender属性就能够了:

          <Route render={(props) =>
            <InputItem
              {...props}
              onChange={(value) => this.handleInputChange(value)}
              title={'手机号'}
            />
    原文作者:ppsspp
    原文地址: https://segmentfault.com/a/1190000019255300
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞