From e6ab249ce4d0d73050dbc4255cf0438853166d02 Mon Sep 17 00:00:00 2001 From: MaYuanhai <414199639@qq.com> Date: Sat, 31 Oct 2020 11:15:41 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=20debounce=20=E5=BD=93=20imm?= =?UTF-8?q?ediate=20=E5=85=A5=E5=8F=82=20false=20=E7=9A=84=E6=97=B6?= =?UTF-8?q?=E5=80=99=EF=BC=8Cargs=E6=97=A0=E6=B3=95=E8=A2=AB=E8=B5=8B?= =?UTF-8?q?=E5=80=BC=EF=BC=8C=E5=AF=BC=E8=87=B4=E5=8F=96=E4=B8=8D=E5=88=B0?= =?UTF-8?q?=E5=85=A5=E5=8F=82=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 解决 debounce 当 immediate 入参 false 的时候,args无法被赋值,导致取不到入参的问题 --- src/utils/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/index.js b/src/utils/index.js index 3225d3c4..407f16fa 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -271,7 +271,8 @@ export function debounce(func, wait, immediate) { } } - return function(...args) { + return function() { + args = arguments context = this timestamp = +new Date() const callNow = immediate && !timeout