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
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞