input輸入時(shí)觸發(fā)ajax請求事件 在這個(gè)時(shí)候如何實(shí)現(xiàn)函數(shù)防抖 searchInput(e){ this.setState({ searchContent:e.target.value
})
fetch(`/api/book/auto-complete?query=${e.target.value}`)
.then(res=>res.json())
.then(res=>{ console.log(res); this.setState({ completionArr:res.keywords
})
})
}
input輸入時(shí)觸發(fā)ajax請求事件 在這個(gè)時(shí)候如何實(shí)現(xiàn)函數(shù)防抖
炎炎設(shè)計(jì)
2018-11-13 20:04:56