先引入lodash
import * as _ from ‘ lodash ‘
public search = _.throttle(function(){
这里写自己的函数
}, 3000, {
leading: true,
trailing: false,
})
_.throttle 他本身需要返回一个函数,用他来处理节流
2023-09-25 10:39:52
先引入lodash
import * as _ from ‘ lodash ‘
public search = _.throttle(function(){
这里写自己的函数
}, 3000, {
})
_.throttle 他本身需要返回一个函数,用他来处理节流
下一篇:查找算法介绍