gpt4 book ai didi

javascript - 如何在数据数组和对象的合并中使用对象分配而不是扩展语法?

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

我正在使用扩展语法来获取当前对象。

const x = [{ port: 3000, typ: "port" }, { port: 4000, typ: "port" }];
const IDs = [3246237348, 738423894, 73824923]
const y = {
...x[0],
CSSID
};

Object {port: 3000, typ: "port", CSSID: Array[3]}
port: 3000
typ: "port"
CSSID: Array[3]
0: 3246237348
1: 738423894
2: 73824923

但是我想使用对象分配而不是扩展语法,看起来很简单,但我不知道如何获得结果:

const ob = Object.assign(Object.assign({}, x[0], Object.assign(CSSID)) );

Object {0: 3246237348, 1: 738423894, 2: 73824923, port: 3000, typ: "port"}
0: 3246237348
1: 738423894
2: 73824923

最佳答案

Object.assign() 将属性从一个或多个对象复制到单个目标对象。由于 CSSID 是一个数组,因此它将数组的属性(项目)复制到对象。由于您想要一个具有 CSSID 属性的对象,请将其设置为目标对象或源之一的属性:

CSSID 应该是对象的属性:

const x = [{ port: 3000, typ: "port" }, { port: 4000, typ: "port" }];
const CSSID = [3246237348, 738423894, 73824923];
const ob = Object.assign({}, x[0], { CSSID }); // or Object.assign({ CSSID }, x[0]);

console.log(ob);

关于javascript - 如何在数据数组和对象的合并中使用对象分配而不是扩展语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55054071/

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