错误用法
methods: {
throttleHandler(){
_.throttle(function () {
console.log('节流');
this.submit()
}, 1000)
}
正确用法
方式一:该方法在 Vue 常规写法中,没有问题。也是网上能搜索到最多的用法,如下:
methods: {
throttleHandler: _.throttle(function () {
console.log('节流');
this.submit()
}, 1000),
方式二:在使用 vue-property-decorator
装饰器模式开发的时候,方式一就报错了。可以使用下面这种方式
throttleHandler(e) {
_.throttle(function() {
console.log('节流');
this.submit()
}, 1000).call(this);
}