Lodash 去抖动异步/等待

Bat*_*man 5 javascript lodash reactjs debounce

我正在尝试在进行 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>
    );
  }
}
Run Code Online (Sandbox Code Playgroud)

错误:在 setSearch 方法中,我在去抖动中封装了获取数据的调用,但没有任何反应。

Bat*_*man 7

我想我想通了。Deboune 返回一个函数。然后我必须调用该函数

例如:

let myFunc = debounce(this.someFunction,100)

// call debounced function 
myFunc()
Run Code Online (Sandbox Code Playgroud)

我把我的功能改成这样:

  delayedSearch = debounce(this.onSearch, 1500);

  setSearch = e => {
    this.setState({ search: e.target.value });

    this.delayedSearch(this.state.search);
  };

Run Code Online (Sandbox Code Playgroud)

在这里找到帮助:lodash debounce not working in anonymous function

  • 在这里看不到 async/await (46认同)