我在我的redux存储中存储了一个引用,并使用mapStateToProps公开了需要访问它的组件的引用。
存储的ref如下所示:
ref={node => this.myRefToBePutInReduxGlobalStore = node}
此引用的正确propType是什么?
我在我的redux存储中存储了一个引用,并使用mapStateToProps公开了需要访问它的组件的引用。
存储的ref如下所示:
ref={node => this.myRefToBePutInReduxGlobalStore = node}
此引用的正确propType是什么?
我只检查首选方式,由于PropType.object不是很有价值,所以最终使用了这种方式:
PropTypes.shape({ current: PropTypes.instanceOf(Element) })
与@Pandaiolo的帖子非常相似,
PropTypes.elementType
现在已添加如果使用PropTypes> = 15.7.0
PropTypes.elementType
已于2019年2月10日添加到此PR中