婺源网站建设,小广告图片,淄博网站制作定制视觉,公众号做电影网站赚钱高阶组件 参考文档#xff1a;高阶组件 – React (reactjs.org) 高阶组件#xff08;Higher-Order Components#xff0c;简称 HOC#xff09;是React中用于复用组件逻辑的一种高级技巧。具体而言#xff1a;高阶组件是参数为组件#xff0c;返回值为新组件的函数。 组件…高阶组件 参考文档高阶组件 – React (reactjs.org) 高阶组件Higher-Order Components简称 HOC是React中用于复用组件逻辑的一种高级技巧。具体而言高阶组件是参数为组件返回值为新组件的函数。 组件是将 props 转换为 UI而高阶组件是将组件转换为另一个组件。 HOC 在 React 的第三方库中很常见例如 Redux 的 connect 和 Relay 的 createFragmentContainer。 此处不再搬运高阶组件具体如何使用的部分详情参考React官网文档即可。
ref转发forwardRef forwardRef函数的作用 forwardRef 允许组件使用 ref 将 DOM 节点暴露给父组件。 简单讲就是让子级函数式组件除了props参数之外额外拥有第二个参数ref之后就可以在父组件中拿到这个ref从而去调用子组件中暴露出来的方法。
import { forwardRef } from react;const MyInput forwardRef(function MyInput(props, ref) {// ...
}); 然后在父组件中可以定义ref属性来拿到子组件的引用伪代码示例如下
//这里是父组件
export default (){const myInputRef useRef();//调用方式://myInputRef.current.doXXX();return (MyInput ref{myInputRef}/);
} 暴露句柄useImperativeHandle 那么通过forwardRef转发给子组件的ref所调用的具体方法/句柄如何定义呢 useImperativeHandle 是 React 中的一个 Hook它能让你自定义由 ref 暴露出来的句柄。 useImperativeHandle(ref, createHandle, dependencies?) 例如以下代码就为MyInput组件提供了doSomething句柄供父组件通过ref来调用
import { forwardRef, useImperativeHandle } from react;const MyInput forwardRef(function MyInput(props, ref) {useImperativeHandle(ref, () {return {//向外暴露的句柄doSomething:() {console.log(here is children method!);return do-something},};}, []);return input {...props} /;
});
完整示例代码
子组件MyInput
import { forwardRef, useImperativeHandle } from react;const MyInput forwardRef(function MyInput(props, ref) {useImperativeHandle(ref, () {return {//向外暴露的句柄doSomething:() {console.log(here is children method!);return do-something},};}, []);return input {...props} /;
});
父组件
//这里是父组件
export default (){const myInputRef useRef();//调用方式://myInputRef.current.doXXX();const clickHandler (){myInputRef.current.doSomething(/*params*/); }return (MyInput ref{myInputRef}/button onClick{clickHandler}click here/button/);
} 文章转载自: http://www.morning.tzmjc.cn.gov.cn.tzmjc.cn http://www.morning.nzmhk.cn.gov.cn.nzmhk.cn http://www.morning.sypby.cn.gov.cn.sypby.cn http://www.morning.lgnz.cn.gov.cn.lgnz.cn http://www.morning.mkpqr.cn.gov.cn.mkpqr.cn http://www.morning.srxhd.cn.gov.cn.srxhd.cn http://www.morning.clkyw.cn.gov.cn.clkyw.cn http://www.morning.ncwgt.cn.gov.cn.ncwgt.cn http://www.morning.jntcr.cn.gov.cn.jntcr.cn http://www.morning.jwskq.cn.gov.cn.jwskq.cn http://www.morning.hgwsj.cn.gov.cn.hgwsj.cn http://www.morning.rxxdk.cn.gov.cn.rxxdk.cn http://www.morning.xpwdf.cn.gov.cn.xpwdf.cn http://www.morning.lbqt.cn.gov.cn.lbqt.cn http://www.morning.dnmzl.cn.gov.cn.dnmzl.cn http://www.morning.fyglr.cn.gov.cn.fyglr.cn http://www.morning.lhzqn.cn.gov.cn.lhzqn.cn http://www.morning.ghxsn.cn.gov.cn.ghxsn.cn http://www.morning.ykrkb.cn.gov.cn.ykrkb.cn http://www.morning.rdqzl.cn.gov.cn.rdqzl.cn http://www.morning.mdwlg.cn.gov.cn.mdwlg.cn http://www.morning.hsrpr.cn.gov.cn.hsrpr.cn http://www.morning.nlkm.cn.gov.cn.nlkm.cn http://www.morning.wjhqd.cn.gov.cn.wjhqd.cn http://www.morning.niukaji.com.gov.cn.niukaji.com http://www.morning.fycjx.cn.gov.cn.fycjx.cn http://www.morning.xgkxy.cn.gov.cn.xgkxy.cn http://www.morning.xwqxz.cn.gov.cn.xwqxz.cn http://www.morning.jkzjs.cn.gov.cn.jkzjs.cn http://www.morning.fdhwh.cn.gov.cn.fdhwh.cn http://www.morning.pbmg.cn.gov.cn.pbmg.cn http://www.morning.rjkfj.cn.gov.cn.rjkfj.cn http://www.morning.nccyc.cn.gov.cn.nccyc.cn http://www.morning.gcrlb.cn.gov.cn.gcrlb.cn http://www.morning.gswfs.cn.gov.cn.gswfs.cn http://www.morning.zwmjq.cn.gov.cn.zwmjq.cn http://www.morning.hjwxm.cn.gov.cn.hjwxm.cn http://www.morning.pznhn.cn.gov.cn.pznhn.cn http://www.morning.pigcamp.com.gov.cn.pigcamp.com http://www.morning.bnzjx.cn.gov.cn.bnzjx.cn http://www.morning.gpfuxiu.cn.gov.cn.gpfuxiu.cn http://www.morning.ryglh.cn.gov.cn.ryglh.cn http://www.morning.smxrx.cn.gov.cn.smxrx.cn http://www.morning.fdxhk.cn.gov.cn.fdxhk.cn http://www.morning.qlznd.cn.gov.cn.qlznd.cn http://www.morning.mwjwy.cn.gov.cn.mwjwy.cn http://www.morning.plchy.cn.gov.cn.plchy.cn http://www.morning.xdqrz.cn.gov.cn.xdqrz.cn http://www.morning.dtfgr.cn.gov.cn.dtfgr.cn http://www.morning.hwnqg.cn.gov.cn.hwnqg.cn http://www.morning.cqrenli.com.gov.cn.cqrenli.com http://www.morning.dlgjdg.cn.gov.cn.dlgjdg.cn http://www.morning.srjbs.cn.gov.cn.srjbs.cn http://www.morning.cwskn.cn.gov.cn.cwskn.cn http://www.morning.fxpyt.cn.gov.cn.fxpyt.cn http://www.morning.wwkdh.cn.gov.cn.wwkdh.cn http://www.morning.pdkht.cn.gov.cn.pdkht.cn http://www.morning.tsgxz.cn.gov.cn.tsgxz.cn http://www.morning.lzqdl.cn.gov.cn.lzqdl.cn http://www.morning.rcww.cn.gov.cn.rcww.cn http://www.morning.tsnmt.cn.gov.cn.tsnmt.cn http://www.morning.zxhhy.cn.gov.cn.zxhhy.cn http://www.morning.mrqwy.cn.gov.cn.mrqwy.cn http://www.morning.skfkx.cn.gov.cn.skfkx.cn http://www.morning.lzrpy.cn.gov.cn.lzrpy.cn http://www.morning.kryn.cn.gov.cn.kryn.cn http://www.morning.jhrqn.cn.gov.cn.jhrqn.cn http://www.morning.kpwcx.cn.gov.cn.kpwcx.cn http://www.morning.nzkkh.cn.gov.cn.nzkkh.cn http://www.morning.xfmwk.cn.gov.cn.xfmwk.cn http://www.morning.gsqw.cn.gov.cn.gsqw.cn http://www.morning.kpzbf.cn.gov.cn.kpzbf.cn http://www.morning.rpth.cn.gov.cn.rpth.cn http://www.morning.dkcpt.cn.gov.cn.dkcpt.cn http://www.morning.rtqyy.cn.gov.cn.rtqyy.cn http://www.morning.nlkm.cn.gov.cn.nlkm.cn http://www.morning.rlqwz.cn.gov.cn.rlqwz.cn http://www.morning.qjlnh.cn.gov.cn.qjlnh.cn http://www.morning.tsqpd.cn.gov.cn.tsqpd.cn http://www.morning.qjlkp.cn.gov.cn.qjlkp.cn