亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

JavaScript 防抖和節流遇見的奇怪問題及解決

瀏覽:78日期:2023-10-07 15:17:56

場景

網絡上已經存在了大量的有關 防抖 和 節流 的文章,為何吾輩還要再寫一篇呢?事實上,防抖和節流,吾輩在使用中發現了一些奇怪的問題,并經過了數次的修改,這里主要分享一下吾輩遇到的問題以及是如何解決的。

為什么要用防抖和節流?

因為某些函數觸發/調用的頻率過快,吾輩需要手動去限制其執行的頻率。例如常見的監聽滾動條的事件,如果沒有防抖處理的話,并且,每次函數執行花費的時間超過了觸發的間隔時間的話 ? 頁面就會卡頓。

演進

初始實現

我們先實現一個簡單的去抖函數

function debounce(delay, action) { let tId return function(...args) { if (tId) clearTimeout(tId) tId = setTimeout(() => { action(...args) }, delay) }}

測試一下

// 使用 Promise 簡單封裝 setTimeout,下同const wait = ms => new Promise(resolve => setTimeout(resolve, ms));(async () => { let num = 0 const add = () => ++num add() add() console.log(num) // 2 const fn = debounce(10, add) fn() fn() console.log(num) // 2 await wait(20) console.log(num) // 3})()

好了,看來基本的效果是實現了的。包裝過的函數 fn 調用了兩次,卻并沒有立刻執行,而是等待時間間隔過去之后才最終執行了一次。

this 怎么辦?

然而,上面的實現有一個致命的問題,沒有處理 this!當你用在原生的事件處理時或許還不覺得,然而,當你使用了 ES6 class 這類對 this 敏感的代碼時,就一定會遇到 this 帶來的問題。

例如下面使用 class 來聲明一個計數器

class Counter { constructor() { this.i = 0 } add() { this.i++ }}

我們可能想在 constructor 中添加新的屬性 fn

class Counter { constructor() { this.i = 0 this.fn = debounce(10, this.add) } add() { this.i++ }}

但很遺憾,這里的 this 綁定是有問題的,執行以下代碼試試看

const counter = new Counter()counter.fn() // Cannot read property ’i’ of undefined

會拋出異常 Cannot read property ’i’ of undefined,究其原因就是 this 沒有綁定,我們可以手動綁定 this .bind(this)

class Counter { constructor() { this.i = 0 this.fn = debounce(10, this.add.bind(this)) } add() { this.i++ }}

但更好的方式是修改 debounce,使其能夠自動綁定 this

function debounce(delay, action) { let tId return function(...args) { if (tId) clearTimeout(tId) tId = setTimeout(() => { action.apply(this, args) }, delay) }}

然后,代碼將如同預期的運行

;(async () => { class Counter { constructor() { this.i = 0 this.fn = debounce(10, this.add) } add() { this.i++ } } const counter = new Counter() counter.add() counter.add() console.log(counter.i) // 2 counter.fn() counter.fn() console.log(counter.i) // 2 await wait(20) console.log(counter.i) // 3})()

返回值呢?

不知道你有沒有發現,現在使用 debounce 包裝的函數都沒有返回值,是完全只有副作用的函數。然而,吾輩還是遇到了需要返回值的場景。例如:輸入停止后,使用 Ajax 請求后臺數據判斷是否已存在相同的數據。

修改 debounce 成會緩存上一次執行結果并且有初始結果參數的實現

function debounce(delay, action, init = undefined) { let flag let result = init return function(...args) { if (flag) clearTimeout(flag) flag = setTimeout(() => { result = action.apply(this, args) }, delay) return result }}

調用代碼變成了

;(async () => { class Counter { constructor() { this.i = 0 this.fn = debounce(10, this.add, 0) } add() { return ++this.i } } const counter = new Counter() console.log(counter.add()) // 1 console.log(counter.add()) // 2 console.log(counter.fn()) // 0 console.log(counter.fn()) // 0 await wait(20) console.log(counter.fn()) // 3})()

看起來很完美?然而,沒有考慮到異步函數是個大失??!

嘗試以下測試代碼

;(async () => { const get = async i => i console.log(await get(1)) console.log(await get(2)) const fn = debounce(10, get, 0) fn(3).then(i => console.log(i)) // fn(...).then is not a function fn(4).then(i => console.log(i)) await wait(20) fn(5).then(i => console.log(i))})()

會拋出異常 fn(...).then is not a function,因為我們包裝過后的函數是同步的,第一次返回的值并不是 Promise 類型。

除非我們修改默認值

;(async () => { const get = async i => i console.log(await get(1)) console.log(await get(2)) // 注意,修改默認值為 Promise const fn = debounce(10, get, new Promise(resolve => resolve(0))) fn(3).then(i => console.log(i)) // 0 fn(4).then(i => console.log(i)) // 0 await wait(20) fn(5).then(i => console.log(i)) // 4})()

支持有返回值的異步函數

支持異步有兩種思路

將異步函數包裝為同步函數 將包裝后的函數異步化

第一種思路實現

function debounce(delay, action, init = undefined) { let flag let result = init return function(...args) { if (flag) clearTimeout(flag) flag = setTimeout(() => { const temp = action.apply(this, args) if (temp instanceof Promise) { temp.then(res => (result = res)) } else { result = temp } }, delay) return result }}

調用方式和同步函數完全一樣,當然,是支持異步函數的

;(async () => { const get = async i => i console.log(await get(1)) console.log(await get(2)) // 注意,修改默認值為 Promise const fn = debounce(10, get, 0) console.log(fn(3)) // 0 console.log(fn(4)) // 0 await wait(20) console.log(fn(5)) // 4})()

第二種思路實現

const debounce = (delay, action, init = undefined) => { let flag let result = init return function(...args) { return new Promise(resolve => { if (flag) clearTimeout(flag) flag = setTimeout(() => { result = action.apply(this, args) resolve(result) }, delay) setTimeout(() => { resolve(result) }, delay) }) }}

調用方式支持異步的方式

;(async () => { const get = async i => i console.log(await get(1)) console.log(await get(2)) // 注意,修改默認值為 Promise const fn = debounce(10, get, 0) fn(3).then(i => console.log(i)) // 0 fn(4).then(i => console.log(i)) // 4 await wait(20) fn(5).then(i => console.log(i)) // 5})()

可以看到,第一種思路帶來的問題是返回值永遠會是 舊的 返回值,第二種思路主要問題是將同步函數也給包裝成了異步。利弊權衡之下,吾輩覺得第二種思路更加正確一些,畢竟使用場景本身不太可能必須是同步的操作。而且,原本 setTimeout 也是異步的,只是不需要返回值的時候并未意識到這點。

避免原函數信息丟失

后來,有人提出了一個問題,如果函數上面攜帶其他信息,例如類似于 jQuery 的 $,既是一個函數,但也同時含有其他屬性,如果使用 debounce 就找不到了呀

一開始吾輩立刻想到了復制函數上面的所有可遍歷屬性,然后想起了 ES6 的 Proxy 特性 ? 這實在是太魔法了。使用 Proxy 解決這個問題將異常的簡單 ? 因為除了調用函數,其他的一切操作仍然指向原函數!

const debounce = (delay, action, init = undefined) => { let flag let result = init return new Proxy(action, { apply(target, thisArg, args) { return new Promise(resolve => { if (flag) clearTimeout(flag) flag = setTimeout(() => { resolve((result = Reflect.apply(target, thisArg, args))) }, delay) setTimeout(() => { resolve(result) }, delay) }) }, })}

測試一下

;(async () => { const get = async i => i get.rx = ’rx’ console.log(get.rx) // rx const fn = debounce(10, get, 0) console.log(fn.rx) // rx})()

實現節流

以這種思路實現一個節流函數 throttle

/** * 函數節流 * 節流 (throttle) 讓一個函數不要執行的太頻繁,減少執行過快的調用,叫節流 * 類似于上面而又不同于上面的函數去抖, 包裝后函數在上一次操作執行過去了最小間隔時間后會直接執行, 否則會忽略該次操作 * 與上面函數去抖的明顯區別在連續操作時會按照最小間隔時間循環執行操作, 而非僅執行最后一次操作 * 注: 該函數第一次調用一定會執行,不需要擔心第一次拿不到緩存值,后面的連續調用都會拿到上一次的緩存值 * 注: 返回函數結果的高階函數需要使用 {@link Proxy} 實現,以避免原函數原型鏈上的信息丟失 * * @param {Number} delay 最小間隔時間,單位為 ms * @param {Function} action 真正需要執行的操作 * @return {Function} 包裝后有節流功能的函數。該函數是異步的,與需要包裝的函數 {@link action} 是否異步沒有太大關聯 */const throttle = (delay, action) => { let last = 0 let result return new Proxy(action, { apply(target, thisArg, args) { return new Promise(resolve => { const curr = Date.now() if (curr - last > delay) { result = Reflect.apply(target, thisArg, args) last = curr resolve(result) return } resolve(result) }) }, })}

總結

嘛,實際上這里的防抖和節流仍然是簡單的實現,其他的像 取消防抖/強制刷新緩存 等功能尚未實現。當然,對于吾輩而言功能已然足夠了,也被放到了公共的函數庫 rx-util 中。

以上就是JavaScript 防抖和節流遇見的奇怪問題及解決的詳細內容,更多關于JavaScript 防抖和節流的資料請關注好吧啦網其它相關文章!

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 黄色片香蕉视频 | 国产精品玖玖玖在线观看 | 草草国产成人免费视频 | 色系视频在线观看免费观看 | 91免费精品国偷自产在线在线 | 日本一级毛片2021免费 | 色一情一乱一伦一区二区三区 | 人人狠狠综合久久亚洲 | 国产mm | 特黄特色的大片观看免费视频 | 玖玖精品在线 | 国产精品亚洲第一区二区三区 | 国产911情侣拍拍在线播放 | xxxxx亚洲| 我想看黄色一级片 | 成人一区视频 | 在线观看国产三级 | 国产精品手机网站 | 千百橹最新亚洲地址在线播放 | 婷婷色在线视频 | 一区二区国产在线播放 | 欧美一区二区三区不卡免费 | 麻豆爱爱视频 | 亚洲最大综合网 | 亚洲视频重口味 | 狠狠色丁香久久综合婷婷 | 男女晚上激烈的拍拍拍免费看 | 国产成人精品在线观看 | 久久精品久久久久久久久人 | 亚洲精品国产第一区二区多人 | 一级aaa级毛片午夜在线播放 | 免费特黄一级欧美大片 | 精品国产免费一区二区三区 | 午夜毛片视频高清不卡免费 | 亚洲精品一区二区三区中文字幕 | 免费看欧美日韩一区二区三区 | 日韩欧一级毛片在线播无遮挡 | 一本高清在线 | 国产成人精品久久亚洲高清不卡 | 亚洲精品推荐 | 亚洲精品一区乱码在线观看 |