假设我有 3 个基于类的组件需要并实现的props,即
<Component propOne={this.props.one} propTwo={this.props.two}>
{this.props.children}
</Component>
我将如何传递我最初不期望的任何其他props,但说使用我的组件的其他人想要使用?
我刚在想
<Component propOne={this.props.one} propTwo={this.props.two} {...this.props} >
{this.props.children}
</Component>
但我担心props重复