reactjs – Lodash用React Input去抖动

前端之家收集整理的这篇文章主要介绍了reactjs – Lodash用React Input去抖动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将lodash的debouncing添加搜索函数中,从输入onChange事件调用.下面的代码生成一个类型错误’function is expected’,我理解,因为lodash期待一个函数.这样做的正确方法是什么,可以全部内联完成吗?到目前为止,我几乎尝试了所有的例子都无济于事.
search(e){
 let str = e.target.value;
 debounce(this.props.relay.setVariables({ query: str }),500);
},
debounce函数可以在JSX中内联传递,也可以直接设置为类方法,如下所示:
search: _.debounce(function(e) {
  console.log('Debounced Event:',e);
},1000)

小提琴:https://jsfiddle.net/woodenconsulting/69z2wepo/36453/

如果您使用的是es2015,则可以直接在构造函数或componentWillMount等生命周期方法中定义debounce方法.

例子:

class DebounceSamples extends React.Component {
  constructor(props) {
    super(props);

    // Method defined in constructor,alternatively could be in another lifecycle method
    // like componentWillMount
    this.search = _.debounce(e => {
      console.log('Debounced Event:',e);
    },1000);
  }

  // Define the method directly in your class
  search = _.debounce((e) => {
    console.log('Debounced Event:',e);
  },1000)
}
原文链接:https://www.f2er.com/react/300899.html

猜你在找的React相关文章