攻略

vue-使用lodash库进行函数限流

  • 来源:哔哩哔哩
  • 时间:2023-04-22 11:04:02


(资料图片仅供参考)

<template id="Application">  <div>按钮点击{{count}}次</div>  <button @click="click">按钮</button></template><script>import _ from 'lodash';export default {  name: "throttle",  data(){    return{      throttle: false,      count:0,    }  },  methods:{    // 因为input输入时需要请求后台,结果每次输入一个字符都会请求,连续输就连续请求 debounce防抖 延时500ms    click:_.debounce(function () {      this.count = this.count + 1    }, 500)  }}</script><style scoped></style>

关键词:

推荐内容

Copyright @  2015-2022 亚洲教育装备网版权所有  

备案号:豫ICP备20022870号-9

  

联系邮箱:553 138 779@qq.com