gpt4 book ai didi

javascript - ES5 中解构赋值的支持问题

转载 作者:行者123 更新时间:2023-12-01 01:08:11 33 4
gpt4 key购买 nike

我遇到了一个问题,部分代码使用了 es5 不支持的解构赋值。 (用 gulp 构建问题)。

我已经删除了所有 es6 箭头并使用了函数,但我不知道如何将解构分配恢复到 ES5:

var result2 = Object.values(
zones.reduce(function (a, {id,name,card,request,res}) {
a[id] || (a[id] = {id, card, name, unique_cards: new Set(), nb_carte: 0, request: {}, res: {} });
a[id].unique_cards.add(card);
a[id].nb_carte = a[id].unique_cards.size;
Object.keys(request).forEach(function (k) {
(a[id].request[k] = (a[id].request[k] || 0) + request[k])
});
Object.keys(res).forEach(function (k) {
(a[id].res[k] = (a[id].res[k] || 0) + res[k])
});
return a;
}, Object.create(null))
);

实际错误是:

Destructuring assignments are not supported by current JavaScript version

最佳答案

删除解构,并将原始对象分配给变量(示例中的o)。然后手动将所需的属性分配给变量。

@Dehli noted ,您还应该更改 shorthand property names也可以手动分配。

var result2 = Object.values(
zones.reduce(function(a, o) {
var id = o.id, name = o.name, card = o.card, request = o.request, res = o.res;
a[id] || (a[id] = {
id: id, // change from shorthand property name
card: card, // change from shorthand property name
name: name, // change from shorthand property name
unique_cards: new Set(),
nb_carte: 0,
request: {},
res: {}
});
a[id].unique_cards.add(card);
a[id].nb_carte = a[id].unique_cards.size;
Object.keys(request).forEach(function(k) {
(a[id].request[k] = (a[id].request[k] || 0) + request[k])
});
Object.keys(res).forEach(function(k) {
(a[id].res[k] = (a[id].res[k] || 0) + res[k])
});
return a;
}, Object.create(null))
);

关于javascript - ES5 中解构赋值的支持问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55419900/

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