admin管理员组文章数量:1339702
I'm new with lodash and I'm trying to use it as below:
import _ from "lodash"
import SearchBar from "../ponents/UI/SearchBar"
const FaQSearchBar = () => {
const handleOnChange = (e) => {
console.log("pre-lodash")
_.debounce(() => console.log("yo", e), 300)
}
return (
<SearchBar
initialWidth="204px"
onFocusWidth="408px"
onChange={handleOnChange}
/>
)
}
export default FaQSearchBar
The pre lodash log pops but nothing from lodash itself. If i change the syntax for something like: _.debounce(console.log("yo", e), 300)
I have the following error Uncaught TypeError: Expected a function
I guess I'm missing a lodash principle here. Thanks
I'm new with lodash and I'm trying to use it as below:
import _ from "lodash"
import SearchBar from "../ponents/UI/SearchBar"
const FaQSearchBar = () => {
const handleOnChange = (e) => {
console.log("pre-lodash")
_.debounce(() => console.log("yo", e), 300)
}
return (
<SearchBar
initialWidth="204px"
onFocusWidth="408px"
onChange={handleOnChange}
/>
)
}
export default FaQSearchBar
The pre lodash log pops but nothing from lodash itself. If i change the syntax for something like: _.debounce(console.log("yo", e), 300)
I have the following error Uncaught TypeError: Expected a function
I guess I'm missing a lodash principle here. Thanks
Share Improve this question asked Jun 23, 2021 at 9:19 DogeDoge 1331 gold badge3 silver badges11 bronze badges 1-
Your creating a debounced function, but then never calling it. What you probably want to do is create your debounce function in a
useMemo
, – Keith Commented Jun 23, 2021 at 9:28
1 Answer
Reset to default 13Because you are using debounce
in the wrong way. Debounce
will return a function. If handleOnChange
doesnt make ponent rerender, you can use:
const functionDebounce = _.debounce(() => console.log("yo", e), 300);
const handleOnChange = (e) => {
console.log("pre-lodash");
functionDebounce(e);
};
But in reality, we will do something and the ponent will re-render. So we need to wrap functionDebounce
into useCallback to make sure it not change when ponent rerender
const functionDebounce = useCallback(
_.debounce(() => console.log("yo", e), 300),
[]
);
本文标签: javascriptLodash debounce in reactStack Overflow
版权声明:本文标题:javascript - Lodash debounce in react - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743600074a2508451.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论