提升机无React静力 将非React特定的静态信息从子组件复制到父组件。 与Object.assign相似,但使用React可以防止覆盖静态关键字。 $ npm install --save hoist-non-react-statics 用法 import hoistNonReactStatics from 'hoist-non-react-statics' ; hoistNonReactStatics ( targetComponent , sourceComponent ) ; 如果您不想悬挂特定的静态变量,则还可以传递第三个参数以排除它们: hoistNonReactStatics ( targetComponent , sourceComponent , { myStatic : true , myOtherStatic : true } ) ; 这个模块做什么? 请