react防抖节流

本文介绍了如何在React应用中利用lodash库来实现防抖(debounce)和节流(throttle)技术,以优化性能。通过执行npm install --save lodash安装lodash库后,开发者可以轻松地在组件方法中应用这些优化策略。
摘要由CSDN通过智能技术生成
import React from 'react'
import {  debounce, throttle } from 'lodash' // 防抖、节流

class About2 extends React.Component {

  constructor(props) {
    super(props)
    this.handleChange = this.handleChange.bind(this)
    this.emitChangeDebounced = debounce(this.emitChange, 250) // 防抖:比如页面一直滚动,滚动完,250毫秒后做一件事情,而不是滚动中不断做某件事
    this.handleClickThrottled = throttle(this.handleClick, 1000) // 节流:固定时间1秒内,一件事情只做一次
  }

  componentWillUnmount() {
    this.emitChangeDebounced.cancel() // 取消防抖
    this.handleClickThrottled.cancel() // 取消节流
  }

  // 防抖处理
  handleChange(e) {
    console.log('---e---', e)
    this.emitChangeDebounced(e.target.value)
  }
  
  emitChange(value) {
    console.log('---value----防抖后要做的事-', value)
  }

  // 节流处理
  handleClick() {
    console.log('---节流事件--')
  }

  render() {
    console.log('---About2----this.props----', this.props)

    return (
      <div s
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值