赞
踩
// 子组件
@connect(
({ invest, loading }) => ({
dataList: invest.dataList
}),
null,
null,
{ withRef: true } // 添加此属性 使父组件能获取到子组件实例
)
// 父组件调用
// 这里我是用 React.createRef() 获取的, 调用方式如下
const 子组件实例 = this.子组件ref.current.getWrappedInstance()
<FormWrapper
wrappedComponentRef={form => (this.EstimateSearch = form)} // 是用此属性获取
/>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。