如何解决如何在角中使用lodash _.debounce
我试图在我的角度应用程序的lodash库中使用函数_.debounce。
我的代码:
void fill_array(void)
{
struct data_cell save_1,save_2,save_3 ;
int array_no,a,b,c ;
int dimensions[3];
char new_cell_data[20];
char path = "C:\\Users\\dave\\Documents\\data.txt";
FILE *fp;
puts("Got here_1");
if ((fp = fopen(path,"w")) == NULL)
{
printf("cannot open file");
exit(1);
}
puts("Got here_2");
printf("Enter the target array,(range 1 - 3 \t");
scanf("%d",&array_no);
...... more code......
fclose(fp);
}
我想在OnKeyup函数中延迟调用getCities。 正确的方法是什么?
谢谢
解决方法
您需要将debounce
包裹在getCities
周围并进行调用。因此,在您的组件文件中
在下面的代码段中,我将其反跳为400毫秒
debouncedGetCitities = _.debounce(params => this.getCities(params),400);
...
onKeyup(event) {
if (event.length >= 3) {
this.debouncedGetCitities(event);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。