react函数式组件中使用lodash的debounce

react函数式组件中使用lodash的debounce

阿凡农
2020.09.22 21:18:20字数 44阅读 3,769

import _ 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)

posted on 2022-04-07 16:55  漫思  阅读(217)  评论(0编辑  收藏  举报

导航