在React中实现防抖节流

本文介绍了一个React组件Debounce的实现,该组件展示了如何使用防抖(debounce)和节流(throttle)技术。在输入框的onKeyUp事件中,分别应用了防抖和节流函数,以限制事件处理函数的执行频率,提高性能。防抖用于在用户停止输入一段时间后才执行,而节流则确保在固定时间间隔内执行一次。
摘要由CSDN通过智能技术生成
import React, { Component } from 'react';

class Debounce extends Component{
  constructor(props) {
    super(props);
  }

  inputValue = (content) => {
    console.log(content);
  }
  debounce = (fun, wait) => {
    return (...rest) => {
      let args = rest;
      console.log(this.timerId);
      if(this.timerId) clearTimeout(this.timerId);
      this.timerId = setTimeout(() => {
        fun(args);
      }, wait);
    }
  }

  throttle = (fun, wait=3000) => {
    return (...rest) => {
      let args = rest;
      if(!this.canRun){
        this.canRun = setTimeout(() => {
          fun(args);
          this.canRun = null;
        }, wait);
      }
    }
  }

  onUndebounceClick = (e) => {
    console.log(e.target.value);
  }
  onDebounceClick = (e) => {
    let debounceKeyup = this.debounce(this.inputValue, 3000);
    debounceKeyup(e.target.value);
  }
  onThrottleClick = () => {
    let throttleKeyup = this.throttle(this.inputValue, 3000);
    throttleKeyup('a');
  }
  render() {
    return(
      <div>
        正常的input: <input onKeyUp={this.onUndebounceClick}/><br/>
        防抖的input: <input onKeyUp={this.onDebounceClick}/><br/>
        节流的button: <button onClick={this.onThrottleClick}>click</button>
      </div>
    )
  }
}

export default Debounce;
React登录注册防抖节流是一种在React应用处理用户输入的技术,用于减少不必要的请求或函数调用次数,提高性能和用户体验。 防抖节流都是为了解决频繁触发事件而导致性能问题的情况。 1. 防抖(Debounce):在一定时间内,如果事件持续触发,则重新计时,直到事件停止触发后才执行相应的操作。常见的应用场景是输入框搜索功能,在用户输入时,只有在用户停止输入一段时间后才会发送请求。 2. 节流(Throttle):在一定时间内,无论事件触发多少次,只执行一次相应的操作。常见的应用场景是滚动加载更多数据,在用户滚动页面时,只有在一定时间间隔内才会触发加载更多的操作。 在React实现登录注册防抖节流可以使用第三方库,比如lodash。以下是一个简单的示例: ```jsx import React, { useState } from 'react'; import { debounce, throttle } from 'lodash'; const LoginRegisterForm = () => { const [username, setUsername] = useState(''); const [password, setPassword] = useState(''); // 防抖处理 const handleLoginDebounced = debounce(() => { // 处理登录逻辑 console.log('登录'); }, 500); // 节流处理 const handleRegisterThrottled = throttle(() => { // 处理注册逻辑 console.log('注册'); }, 1000); const handleUsernameChange = (e) => { setUsername(e.target.value); handleLoginDebounced(); }; const handlePasswordChange = (e) => { setPassword(e.target.value); handleRegisterThrottled(); }; return ( <div> <input type="text" value={username} onChange={handleUsernameChange} placeholder="用户名" /> <input type="password" value={password} onChange={handlePasswordChange} placeholder="密码" /> </div> ); }; export default LoginRegisterForm; ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值