vue中_.debounce和_.throttle,抖动和节流

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/h417251146/article/details/86687515
    // `_.debounce` 是一个通过 Lodash 限制操作频率的函数。
    // 在这个例子中,我们希望限制访问 yesno.wtf/api 的频率
    // AJAX 请求直到用户输入完毕才会发出。想要了解更多关于
    // `_.debounce` 函数 (及其近亲 `_.throttle`) 的知识,
    // 请参考:https://lodash.com/docs#debounce
    this.debouncedGetAnswer = _.debounce(this.getAnswer, 500)

猜你喜欢

转载自blog.csdn.net/h417251146/article/details/86687515