React의 debounce와 throttle의 후크를 각각 시도했습니다.
내가 시도한 코드는 여기
debounce
debounce가 여기를 시도했습니다.
xnimorz/use-debounce - github
yarn add use-debounce
import React, { useState } from "react";
import { useDebounce } from "use-debounce";
const App = () => {
const [text, setText] = useState("");
const [value] = useDebounce(text, 1000);
return (
<>
<input onChange={e => setText(e.target.value)} />
<p>Actual value: {text}</p>
<p>Debounce value: {value}</p>
</>
);
};
export default App;
debounce가 쉽게 시도 할 수 있습니다
throttle
throttle은 여기를 시도했습니다.
bhaskarGyan/use-throttle - github
yarn add use-throttle
import React, { useState } from "react";
import { useThrottle } from "use-throttle";
const App = () => {
const [text, setText] = useState("");
const value = useThrottle(text, 1000);
return (
<>
<input onChange={e => setText(e.target.value)} />
<p>Actual value: {text}</p>
<p>Throttle value: {value}</p>
</>
);
};
export default App;
throttle은 쉽게 시도 할 수 있습니다
이상입니다. 봐 주셔서 감사합니다. m(_ _)m
Reference
이 문제에 관하여(React의 debounce와 throttle의 후크를 각각 시도했습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/okumurakengo/items/c4c0b9fd58a87b4c8667
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
yarn add use-debounce
import React, { useState } from "react";
import { useDebounce } from "use-debounce";
const App = () => {
const [text, setText] = useState("");
const [value] = useDebounce(text, 1000);
return (
<>
<input onChange={e => setText(e.target.value)} />
<p>Actual value: {text}</p>
<p>Debounce value: {value}</p>
</>
);
};
export default App;
throttle은 여기를 시도했습니다.
bhaskarGyan/use-throttle - github
yarn add use-throttle
import React, { useState } from "react";
import { useThrottle } from "use-throttle";
const App = () => {
const [text, setText] = useState("");
const value = useThrottle(text, 1000);
return (
<>
<input onChange={e => setText(e.target.value)} />
<p>Actual value: {text}</p>
<p>Throttle value: {value}</p>
</>
);
};
export default App;
throttle은 쉽게 시도 할 수 있습니다
이상입니다. 봐 주셔서 감사합니다. m(_ _)m
Reference
이 문제에 관하여(React의 debounce와 throttle의 후크를 각각 시도했습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/okumurakengo/items/c4c0b9fd58a87b4c8667텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)