gpt4 book ai didi

javascript - 是否有一种 ES6 速记方式来设置 var 等于来自函数的数据?

转载 作者:行者123 更新时间:2023-11-29 19:07:21 25 4
gpt4 key购买 nike

例如我有这个。

api.get('show/?populate=author&limit=100').then(function(response) {
vm.shows = response.data;
}).catch(function(error) {
vm.error = `The API isn't responding.`;
throw new Error(error);
});

有这样的东西我可以用吗?

api.get('show/?populate=author&limit=100').then(response.data => vm.shows);

最佳答案

您不能立即分配给一个变量,但您可以将 response.data 简写为 destructuring .示例:

// data becomes the "data" property of the callback's first argument
api.get('show/?populate=author&limit=100').then(({data}) => vm.shows = data);

关于javascript - 是否有一种 ES6 速记方式来设置 var 等于来自函数的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41906682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com