乐趣区

react用子组件有RouteComponentProps报错match-is-missing-in-type

因为子组件有 RouteComponentProps,所以在父组件中引用需要传相应的属性。但考虑到如果层级较深的话一层一层传就很麻烦。而如果我们用 route 组件引用的话就会很简单,只需要在需要子组件的地方用 routerender属性就可以了:

          <Route render={(props) =>
            <InputItem
              {...props}
              onChange={(value) => this.handleInputChange(value)}
              title={'手机号'}
            />
退出移动版