工作上遇到个问题
一对父子组件,如何获取子组件里的函数方法,网上的方法有很多,最常用的是添加ref,通过 this.refName.fun便可获取该子组件里的函数.
这里要说的是,在使用antd 蚂蚁金服的时候,如果子组件被一个form包裹着,如何获取此时子组件里的方法?
const RentEquipment2 = Form.create({withRef:true})(RentEquipment); export default RentEquipment2;
加上withRef:true,它的默认值是false,
[withRef] (Boolean): If true,stores a ref to the wrapped component instance and makes it available via getWrappedInstance() method. Default value: false
如果是true的话,会把这个ref的实例包裹起来,并使之有效.
参考:https://github.com/reactjs/react-redux/blob/master/docs/api.md
原文链接:https://www.f2er.com/react/302717.html