服务器之家

服务器之家 > 正文

React事件节流效果失效的原因及解决

时间:2022-03-06 21:27     来源/作者:Cleves

今天做react项目中,给一个 input onKeyDown 事件做节流,出现了节流效果失效。

问题代码:

?
1
2
3
4
5
6
7
render() {
    return (
      <div className="search-bar">
        <input className="search-input" type="text" placeholder="请输入要搜索的用户名(英文)" onKeyDown={this.throttle(this.handleKeyDown)}/>
      </div>
    )
  }
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
throttle = (fn) => {
    let valid = true
    const context = this
 
    return function() {
      if (!valid) return
      valid = false
 
      const args = arguments
 
      fn.apply(context, args)
 
      setTimeout(() => {
        valid = true
      }, 1000);
    }
  }
 
  handleKeyDown = (e) => {
    let { value } = e.target
    const keyCode = e.keyCode
 
    if (keyCode !== 13) return
 
    if (!value.trim()) return
    
    // 发送搜索
    this.props.search(value)
  }

此处问题出现在: 

handleKeyDown() 方法里的  this.props.search(value)
 刷新了组件 props,触发了 react 更新流生命周期。 重新执行了 render();

React事件节流效果失效的原因及解决

这样 throttle() 方法就会重新执行; 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
throttle = (fn) => {
    console.log('%c throttle初始化', 'color: red');
    let valid = true
    const context = this
 
    return function() {
      if (!valid) return
      valid = false
 
      const args = arguments
 
      fn.apply(context, args)
 
      setTimeout(() => {
        valid = true
      }, 1000);
    }
  }

在代码中加入打印,就会在控制台看到 throttle初始化 打印多条;                                                                                                                                                            

解决方式1: 

把节流初始化的位置放到 事件函数赋值

?
1
2
3
4
5
6
7
render() {
    return (
      <div className="search-bar">
        <input className="search-input" type="text" placeholder="请输入要搜索的用户名(英文)" onKeyDown={this.handleKeyDown}/>
      </div>
    )
  }
?
1
2
3
4
5
6
7
8
9
10
11
handleKeyDown = this.throttle((e) => {
    let { value } = e.target
    const keyCode = e.keyCode
 
    if (keyCode !== 13) return
 
    if (!value.trim()) return
    
    // 发送搜索
    this.props.search(value)
  })

解决方式2: 在构造函数中赋值初始化

?
1
2
3
4
5
6
7
render() {
    return (
      <div className="search-bar">
        <input className="search-input" type="text" placeholder="请输入要搜索的用户名(英文)" onKeyDown={this.handleKeyDown}/>
      </div>
    )
  }
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
constructor(props) {
    super(props)
    this.handleKeyDown = this.throttle(this.handleSearch)
  }
 
  handleSearch = (e) => {
    let { value } = e.target
    const keyCode = e.keyCode
 
    if (keyCode !== 13) return
 
    if (!value.trim()) return
    
    // 发送搜索
    this.props.search(value)
  }

采坑总结:

要更加深了解 react 生命周期的触发机制

以上就是React事件节流效果失效的原因及解决的详细内容,更多关于React事件节流效果失效的资料请关注服务器之家其它相关文章!

原文链接:https://www.cnblogs.com/cleves/p/14663672.html

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部