gpt4 book ai didi

javascript - JS ES6 : Get parameters as an object with destructuring

转载 作者:行者123 更新时间:2023-11-30 09:42:28 25 4
gpt4 key购买 nike

是否可以使用解构将函数的参数作为对象获取(以便对其进行迭代)?

function({a=1, b=2, c=3}={}) {
// how to get {a:1, b:2, c:3}?
}

我的目标是将每个参数绑定(bind)到类构造函数中的 this

无需解构是可能的:

class Test {
constructor(args) {
Object.assign(this, args);
}
}

但我不知道如何简化:

class Test {
constructor({a=1, b=2, c=3}={}) {
this.a = a;
this.b = b;
this.c = c;
}
}

let test = new Test();
// test.a = 1
// test.b = 2 etc.

最佳答案

您可以使用对象创建的简写形式来做到这一点:

class Test {
constructor({a=1, b=2, c=3}={}) {
Object.assign(this, {a, b, c});
}
}

例子:

class Test {
constructor({a=1, b=2, c=3}={}) {
Object.assign(this, {a, b, c});
}
}
const t1 = new Test();
console.log("t1:", t1.a, t1.b, t1.c);
const t2 = new Test({b: 42});
console.log("t2:", t2.a, t2.b, t2.c);


或者,不使用解构,而是对 Object.assign 使用多个参数:

class Test {
constructor(options = {}) {
Object.assign(this, Test.defaults, options);
}
}
Test.defaults = {a: 1, b: 2, c: 3};

// Usage:
const t1 = new Test();
console.log("t1:", t1.a, t1.b, t1.c);
const t2 = new Test({b: 42});
console.log("t2:", t2.a, t2.b, t2.c);

...如果您希望其中任何一个作为您可以通过名称引用的离散事物,您可以只使用 this.a(和 this.bthis.c) 来做,或者你可以这样做:

let {a, b, c} = this;

...然后使用它们。 (请注意,将赋值给生成的abc不会更新对象。)

关于javascript - JS ES6 : Get parameters as an object with destructuring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40511487/

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