gpt4 book ai didi

javascript - 在 React.js 中添加去抖动

转载 作者:行者123 更新时间:2023-12-03 00:18:34 25 4
gpt4 key购买 nike

此函数在 onChange 操作上执行。我只希望评论下的内容在 1 秒内反跳。我怎样才能做到这一点?

  onChange = (event, { newValue }) => {
this.setState({
value: newValue,
}, () => {
if (this.state.value.length !== 26) {
// this debounce \/
this.Auth.getUsersData(newValue).then(res => {
if (res) {
this.setState({
accountBills: res,
});
}
});
};
});
}

最佳答案

只需将该代码提取到一个新方法中并将其包装在 _.debounce 中:

import {debounce} from 'lodash';

getUserData = debounce(newValue => this.Auth.getUsersData(newValue)
.then(res => {
if (res) { this.setState({ accountBills: res }) }
})
, 1000);

onChange = (event, { newValue }) => {
this.setState({
value: newValue,
}, () => {
if (this.state.value.length !== 26) {
this.getUserData(newValue);
}
});
}

关于javascript - 在 React.js 中添加去抖动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54430001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com