首页 > 其他 > 详细

React 实现使用高阶组件两种方式

时间:2020-11-02 08:34:41      阅读:34      评论:0      收藏:0      [点我收藏+]
React 使用高阶组件有两种 一种是 调用 传入的组件 另外 一种是 继承传入的组件。高阶组件 就是一个函数 接受参数组件 返回的也是组件 1、function Htight1( componentName ){ return class WrapComponent extends Components { render(){ return ( <componentName ...this.props> { this.props.children } </componentName> ) } } } const demo1 = class extends Components { } 第二种 继承传入组件 function Htight1(componentName){ return class WrapComponents{ //doSomething } } 总结: 这两种在需求上使用没有什么区别

React 实现使用高阶组件两种方式

原文:https://blog.51cto.com/14582569/2545909

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!