react 无状态组件与纯组件(pureComponent)

2023-11-03 22:59

本文主要是介绍react 无状态组件与纯组件(pureComponent),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

无状态组件与纯组件(pureComponent)

1.1 无状态组件

无状态组件可以通过减少继承Component而来的生命周期函数而达到性能优化的效果。从本质上来说,无状态组件就是一个单纯的render函数,所以无状态组件的缺点也是显而易见的。因为它没有shouldComponentUpdate生命周期函数,所以每次state更新,它都会重新绘制render函数。

原则上,只要一个组件只具有render函数时,都可以封装成无状态组件,但是我认为其较佳的使用场景应该是使用在ListView组件的renderRow函数内部,因为每次对ListView组件的数据进行操作,都会不可避免的调用renderRow函数,而这时无状态组件无生命周期的特性恰好能有效的显示出来。虽然此时是否将renderRow里面的组件拆分出来在效果上都是一样的,但是组件的拆分有利于降低耦合,也有利于隔离这些单元进行独立测试。

无状态组件示例:

// 注意:props属性全部写在'{}'里面,也可以只传入‘props’,
// 这里就不用写‘render’函数了
const SubItem = ({rowData,index,updateItem}) => {console.log('SubItem.render',rowData.uername);return (<View style={styles.itemStyle}><TouchableOpacity onPress={()=>updateItem(index)} style={styles.updataBtn}><Text style={styles.baseText}>{rowData.uername||''}</Text><Text style={{fontSize:12,color:'#fff',paddingLeft:20}}>{'点我修改'}</Text></TouchableOpacity><Text style={styles.baseText}>{rowData.useid||''}</Text><Text style={styles.baseText}>{rowData.remark||'暂无备注'}</Text></View>);
}

完整的示例代码:

'use strict';
import React, { Component } from 'react';
import {StyleSheet,View,Text,ListView,TouchableOpacity,
} from 'react-native';const defaultSource = new ListView.DataSource({rowHasChanged: (row1, row2) => row1 !== row2});
const testData = [{uername:'谢广坤',useid:'w1258536653',remark:'这是一条备注信息'},{uername:'王小绿',useid:'1258012580',remark:''},{uername:'肖宏',useid:'3215532155',remark:'宵小消失'},{uername:'李逸',useid:'1008610086',remark:'木子李'}];export default class Test extends Component {constructor(props) {super(props);this.state = {dataSource: defaultSource,};this.listData = [];}componentDidMount() {this.listData = JSON.parse(JSON.stringify(testData));this.setState({dataSource: defaultSource.cloneWithRows(testData),});}updateItem = (index) => {if (this.listData[index].username == '李明') {return;}this.listData[index].username = '李明';this.setState({dataSource: defaultSource.cloneWithRows(this.listData),});} renderRow = (rowData,i,j) => {console.log('renderRow',rowData.uername);return (<SubItem rowData={rowData} updateItem={this.updateItem} index={j}/>)}render() {return (<View style={{flex:1,backgroundColor:"#faf7f7"}}><ListViewdataSource={this.state.dataSource}renderRow={this.renderRow}/></View>)}
}const SubItem = ({rowData,index,updateItem,}) => {console.log('SubItem.render',rowData.uername);return (<View style={styles.itemStyle}><TouchableOpacity onPress={()=>updateItem(index)} style={styles.updataBtn}><Text style={styles.baseText}>{rowData.uername||''}</Text><Text style={{fontSize:12,color:'#fff',paddingLeft:20}}>{'点我修改'}</Text></TouchableOpacity><Text style={styles.baseText}>{rowData.useid||''}</Text><Text style={styles.baseText}>{rowData.remark||'暂无备注'}</Text></View>);
}const styles = StyleSheet.create({itemStyle: {paddingHorizontal: 10,paddingVertical: 15,backgroundColor: '#fff',marginBottom: 5,},baseText: {fontSize: 14,color: '#000',},updataBtn: {flexDirection: 'row',alignItems: 'center',padding: 5,backgroundColor: '#58A0FF',}
});

运行效果图如下:
在这里插入图片描述

点击任意一项的“点我修改”按钮,通过下图可以看出,renderRow重绘了四次,并且SubItem也重新绘制了4次。但是因为SubItem为无状态组件,因此减少了声明周期函数的消耗。
在这里插入图片描述

上文也提到了,虽然此时是否将renderRow里面的组件拆分出来在效果上都是一样的,但是组件的拆分有利于降低耦合,也有利于隔离这些单元进行独立测试,因此组件的拆分对于整个软件开发的进行还是有利的。

1.2 PureComponent

纯组件是通过控制shouldComponentUpdate生命周期函数,减少render调用次数来减少性能损耗的。这相对于Component来说,减少了手动判断state变化的繁琐操作,但该组件也具有一定的缺陷,因为它只能进行一层浅比较,简单来说,它只比较propsstate的内存地址,如果内存地址相同,则shouldComponentUpdate生命周期就返回falsePureComponent的使用场景应该是局部数据发生改变的场景,比如带有输入框、switch开关等的UI组件就可以使用PureComponent组件封装。PureComponent中如果有数据操作最好配合一个第三方组件——Immutable一起使用,Immutable需要使用npm安装该插件才可以使用,因为Immutable可以保证数据的不变性。

PureComponent示例: 以下将输入框组件使用PureComponent进行了封装。

'use strict';
import React, { Component } from 'react';
import {StyleSheet,View,Text,TextInput,TouchableOpacity,
} from 'react-native';export default class Test extends Component {constructor(props) {super(props);this.state = {accountNum: '',initPassword: '',userName: '',};}componentDidMount() {}onChangeText = (text, label) => {this.setState({[label]:text});}render() {return (<View style={{flex:1,backgroundColor:"#faf7f7"}}><InputItem label={'账号:'} holder={'请输入账号'} itemValue={this.state.accountNum} handleChangeText={this.onChangeText} keyboardType={'default'}/><InputItem label={'初始密码:'} holder={'请输入初始密码'} itemValue={this.state.initPassword} handleChangeText={this.onChangeText} keyboardType={'numeric'}/><InputItem label={'姓名:'} holder={'请输入姓名'} itemValue={this.state.userName} handleChangeText={this.onChangeText} keyboardType={'default'}/></View>)}
}class InputItem extends React.PureComponent {render() {let {label,holder,itemValue,handleChangeText,keyboardType} = this.props;console.log('renderInputItem',itemValue);return (<View style={styles.inputItemContainer}><Text style={{fontSize:14,color:'#000'}}>{label}</Text><TextInputstyle={styles.customerInput}underlineColorAndroid={"transparent"}placeholderTextColor={"#cdcdcd"}placeholder={holder}defaultValue={itemValue}keyboardType={keyboardType}onChangeText={(text)=>handleChangeText(text,itemValue)}numberOfLines={1}/></View>)}
}const styles = StyleSheet.create({inputItemContainer: {backgroundColor: '#fff',paddingHorizontal: 10,paddingVertical: 14,marginBottom: 5,flexDirection: 'row',alignItems: 'center'},customerInput: {flex: 1,minHeight: 25,paddingHorizontal: 10,paddingVertical: 0,textAlign: 'right',fontSize: 14,color: '#333',},
});

我们都对在输入框中输入内容,InputItem也没有进行重绘。运行效果图如下: 在这里插入图片描述

控制台打印如下:

在这里插入图片描述

这里如果我们不使用PureComponent,则会多次调用render函数,造成无意义的资源浪费。如果我们封装的是其它的组件,比如Switch,则也只有state被修改的那一项被修改,感兴趣的童鞋可以动手自己试一下。

总结:

  1. 一般来说,如果一个组件只有render函数,则该组件可以封装成无状态组件。
  2. renderRow函数中比较适合使用无状态组件。
  3. 在大部分的时候都可以使用pureComponent组件来替换Component

这篇关于react 无状态组件与纯组件(pureComponent)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/341464

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali

浅析CSS 中z - index属性的作用及在什么情况下会失效

《浅析CSS中z-index属性的作用及在什么情况下会失效》z-index属性用于控制元素的堆叠顺序,值越大,元素越显示在上层,它需要元素具有定位属性(如relative、absolute、fi... 目录1. z-index 属性的作用2. z-index 失效的情况2.1 元素没有定位属性2.2 元素处

Python实现html转png的完美方案介绍

《Python实现html转png的完美方案介绍》这篇文章主要为大家详细介绍了如何使用Python实现html转png功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 1.增强稳定性与错误处理建议使用三层异常捕获结构:try: with sync_playwright(

Vue 调用摄像头扫描条码功能实现代码

《Vue调用摄像头扫描条码功能实现代码》本文介绍了如何使用Vue.js和jsQR库来实现调用摄像头并扫描条码的功能,通过安装依赖、获取摄像头视频流、解析条码等步骤,实现了从开始扫描到停止扫描的完整流... 目录实现步骤:代码实现1. 安装依赖2. vue 页面代码功能说明注意事项以下是一个基于 Vue.js

CSS @media print 使用详解

《CSS@mediaprint使用详解》:本文主要介绍了CSS中的打印媒体查询@mediaprint包括基本语法、常见使用场景和代码示例,如隐藏非必要元素、调整字体和颜色、处理链接的URL显示、分页控制、调整边距和背景等,还提供了测试方法和关键注意事项,并分享了进阶技巧,详细内容请阅读本文,希望能对你有所帮助...

Spring组件初始化扩展点BeanPostProcessor的作用详解

《Spring组件初始化扩展点BeanPostProcessor的作用详解》本文通过实战案例和常见应用场景详细介绍了BeanPostProcessor的使用,并强调了其在Spring扩展中的重要性,感... 目录一、概述二、BeanPostProcessor的作用三、核心方法解析1、postProcessB