本文转载自微信公众号「JS每日一题」,作者灰灰。转载本文请联系JS每日一题公众号。
创新互联服务项目包括枣强网站建设、枣强网站制作、枣强网页制作以及枣强网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,枣强网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到枣强省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
高阶函数(Higher-order function),至少满足下列一个条件的函数
在React中,高阶组件即接受一个或多个组件作为参数并且返回一个组件,本质也就是一个函数,并不是一个组件
- const EnhancedComponent = highOrderComponent(WrappedComponent);
上述代码中,该函数接受一个组件WrappedComponent作为参数,返回加工过的新组件EnhancedComponent
高阶组件的这种实现方式,本质上是一个装饰者设计模式
最基本的高阶组件的编写模板如下:
- import React, { Component } from 'react';
- export default (WrappedComponent) => {
- return class EnhancedComponent extends Component {
- // do something
- render() {
- return
; - }
- }
- }
通过对传入的原始组件 WrappedComponent 做一些你想要的操作(比如操作 props,提取 state,给原始组件包裹其他元素等),从而加工出想要的组件 EnhancedComponent
把通用的逻辑放在高阶组件中,对组件实现一致的处理,从而实现代码的复用
所以,高阶组件的主要功能是封装并分离组件的通用逻辑,让通用逻辑在组件间更好地被复用
但在使用高阶组件的同时,一般遵循一些约定,如下:
这里需要注意的是,高阶组件可以传递所有的props,但是不能传递ref
如果向一个高阶组件添加refe引用,那么ref 指向的是最外层容器组件实例的,而不是被包裹的组件,如果需要传递refs的话,则使用React.forwardRef,如下:
- function withLogging(WrappedComponent) {
- class Enhance extends WrappedComponent {
- componentWillReceiveProps() {
- console.log('Current props', this.props);
- console.log('Next props', nextProps);
- }
- render() {
- const {forwardedRef, ...rest} = this.props;
- // 把 forwardedRef 赋值给 ref
- return
; - }
- };
- // React.forwardRef 方法会传入 props 和 ref 两个参数给其回调函数
- // 所以这边的 ref 是由 React.forwardRef 提供的
- function forwardRef(props, ref) {
- return
- }
- return React.forwardRef(forwardRef);
- }
- const EnhancedComponent = withLogging(SomeComponent);
通过上面的了解,高阶组件能够提高代码的复用性和灵活性,在实际应用中,常常用于与核心业务无关但又在多个模块使用的功能,如权限控制、日志记录、数据校验、异常处理、统计上报等
举个例子,存在一个组件,需要从缓存中获取数据,然后渲染。一般情况,我们会如下编写:
- import React, { Component } from 'react'
- class MyComponent extends Component {
- componentWillMount() {
- let data = localStorage.getItem('data');
- this.setState({data});
- }
- render() {
- return
{this.state.data}- }
- }
上述代码当然可以实现该功能,但是如果还有其他组件也有类似功能的时候,每个组件都需要重复写componentWillMount中的代码,这明显是冗杂的
下面就可以通过高价组件来进行改写,如下:
- import React, { Component } from 'react'
- function withPersistentData(WrappedComponent) {
- return class extends Component {
- componentWillMount() {
- let data = localStorage.getItem('data');
- this.setState({data});
- }
- render() {
- // 通过{...this.props} 把传递给当前组件的属性继续传递给被包装的组件WrappedComponent
- return
- }
- }
- }
- class MyComponent2 extends Component {
- render() {
- return
{this.props.data}- }
- }
- const MyComponentWithPersistentData = withPersistentData(MyComponent2)
再比如组件渲染性能监控,如下:
- class Home extends React.Component {
- render() {
- return (
Hello World.
);- }
- }
- function withTiming(WrappedComponent) {
- return class extends WrappedComponent {
- constructor(props) {
- super(props);
- this.start = 0;
- this.end = 0;
- }
- componentWillMount() {
- super.componentWillMount && super.componentWillMount();
- this.start = Date.now();
- }
- componentDidMount() {
- super.componentDidMount && super.componentDidMount();
- this.end = Date.now();
- console.log(`${WrappedComponent.name} 组件渲染时间为 ${this.end - this.start} ms`);
- }
- render() {
- return super.render();
- }
- };
- }
- export default withTiming(Home);
参考文献
https://zh-hans.reactjs.org/docs/higher-order-components.html#gatsby-focus-wrapper
https://zh.wikipedia.org/wiki/%E9%AB%98%E9%98%B6%E5%87%BD%E6%95%B0
https://segmentfault.com/a/1190000010307650
https://zhuanlan.zhihu.com/p/61711492
网页标题:面试官:说说对高阶组件的理解?应用场景?
网站网址:http://www.mswzjz.cn/qtweb/news29/261429.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能