博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Angular7里面实现 debounce search
阅读量:6495 次
发布时间:2019-06-24

本文共 1126 字,大约阅读时间需要 3 分钟。

项目需求:

  全局搜索 + 防抖 提高性能

技术:

  [(ngModel)]  [(ngModelChange)]  Rxjs( Subject)

代码展示: 

// html 
// xx.component.tsimport { Observable, combineLatest, Subject } from 'rxjs';import { distinctUntilChanged, debounceTime } from 'rxjs/operators';private searchStream = new Subject
();ngOnInit() {
// 订阅 this.initGlobalSearchSubscription();} ngOnDestroy() {
// 取消订阅 this.searchStream.unsubscribe(); } private async initGlobalSearchSubscription() { this.projectId = await this.localStorageService.getItem('currentProject'); this.searchStream.pipe( debounceTime(400), distinctUntilChanged()) .subscribe(async(searchContent) => {
const searchResult = await this.projectService.globalSearch(this.projectId, searchContent).toPromise(); this.searchMenuList = searchResult.body; }); } private globalSearch() {
  // 消息发送 this.searchStream.next(this.globalSearchContent); }

具有防抖和截流的第三方库:

个人对截流和防抖的理解:

防抖:当连续操作停止的时间超过规定的等待时间后,回调函数才会被调用。比如:停止输入后一段时间,回调函数才会触发。

截流:在连续操作的这段时间内,回调函数在规定的时间段内才会被调用。比如:连续拖拽,回调函数只会每个一段时间触发一次

转载于:https://www.cnblogs.com/juliazhang/p/11015780.html

你可能感兴趣的文章
swapper进程【转】
查看>>
跨链技术与通证经济
查看>>
爬虫学习之-xpath
查看>>
js jQuery 右键菜单 清屏
查看>>
深入理解let和var的区别(暂时性死区)!!!
查看>>
dotConnect for Oracle
查看>>
Eclipse下C/C++开发环境搭建
查看>>
Eclipse中设置在创建新类时自动生成注释
查看>>
我的友情链接
查看>>
CoreOS 手动更新
查看>>
golang 分页
查看>>
再论机械式针对接口编程
查看>>
25 个 Linux 性能监控工具
查看>>
C#程序员整理的Unity 3D笔记(十三):Unity 3D基于组件的思想
查看>>
Tengine-2.1.1 ngx_http_concat_module 400问题
查看>>
Windows中挂载安装ISO文件
查看>>
Wayland 1.0发布
查看>>
golang的goroutine是如何实现的?
查看>>
乐视云基于Kubernetes的PaaS平台建设
查看>>
R 学习笔记《十》 R语言初学者指南--图形工具
查看>>