跳到主要内容

useThrottle

对值进行节流的React hook

Usage

实时编辑器

function Demo() {
  const [value, setValue] = useState<string>();
  const throttledValue = useThrottle(value, 500);

  return (
    <div>
      <input
        value={value}
        onChange={e => setValue(e.target.value)}
        placeholder="Typed value"
        style={{ width: 280 }}
      />
      <p style={{ marginTop: 16 }}>throttledValue: {throttledValue}</p>
    </div>
  );
};

结果
Loading...

API

useThrottle

Returns

T

Arguments

参数名描述类型默认值
value要节流的值T (必填)-
wait间隔时间number | undefined-
options传递给 lodash.throttle 的选项_.ThrottleSettings | undefined-