react函数式组件中使用lodash的debounce
作者:互联网
react函数式组件中使用lodash的debounce
阿凡农 2020.09.22 21:18:20字数 44阅读 3,769import _ from 'lodash'
<Input style={{ marginBottom: 16 }} maxLength={25} onChange={userChange} />
const userChange = (e: any) => {
callAjax(e.target.value)
}
const getMember = (value: any) => {
fetchMember(value); // 最终的获取ajax数据的方法
}
const callAjax = _.debounce(getMember, 300)
标签:const,lodash,debounce,callAjax,react,value,any 来源: https://www.cnblogs.com/sexintercourse/p/16113146.html