作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在进行 api 调用之前,我正在尝试为我的应用程序添加去抖动功能。但是,当我介绍 debouce 时,似乎我的 await 被忽略了,并且由于缺少值而导致函数调用
export default class App extends Component {
state = {
search: "Cats",
results: []
};
async search(text) {
const giphy = {
baseURL: "https://api.giphy.com/v1/gifs/search",
apiKey: "0UTRbFtkMxAplrohufYco5IY74U8hOes",
tag: text
};
let giphyURL = encodeURI(
giphy.baseURL + "?api_key=" + giphy.apiKey + "&q=" + giphy.tag
);
let data = await fetch(giphyURL);
return data.json();
}
async componentDidMount() {
// get default search
this.onSearch(this.state.text);
}
setSearch = e => {
this.setState({ search: e.target.value });
debounce(() => this.onSearch(this.state.search), 100);
};
async onSearch(text) {
console.log("text:", text);
try {
let response = await this.search(this.state.search);
console.log("data:", response.data);
// console.log(data.results);
let data = response.data.reduce((t, { title, id, images }) => {
t.push({ title, id, url: images.downsized_medium.url });
return t;
}, []);
this.setState({ results: data });
} catch (e) {
console.error("Failed Fetch", e.toString());
}
}
render() {
return (
<main className="app">
<Header>This is my Gif Search App</Header>
<nav className="navbar">
<SearchBox onSearch={this.setSearch} value={this.state.search} />
</nav>
<aside className="sidebar">Sidebar Bar</aside>
<section className="results">
<Results results={this.state.results} />
</section>
<footer className="footer">
<p className="footer-text">Copyright @funssies 2019</p>
</footer>
</main>
);
}
}
最佳答案
我想我想通了。 Deboune 返回一个函数。然后我必须调用该函数
例如:
let myFunc = debounce(this.someFunction,100)
// call debounced function
myFunc()
delayedSearch = debounce(this.onSearch, 1500);
setSearch = e => {
this.setState({ search: e.target.value });
this.delayedSearch(this.state.search);
};
关于javascript - Lodash 去抖异步/等待,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58055085/
我是一名优秀的程序员,十分优秀!