如何debounce
在async
函数上使用?我的vue
-app 中有一个方法,它从 API 中获取数据,该 API 连续调用我想要避免的 API。
这是我的方法:
methods: {
async getAlbums () {
const response = await AlbumService.fetchAlbums()
this.albums = response.data.albums
}
}
我以前安装lodash
过,我该如何实现呢?