gpt4 book ai didi

javascript - 如何在javascript中将对象添加到对象数组中

转载 作者:行者123 更新时间:2023-12-02 16:10:50 25 4
gpt4 key购买 nike

我想将对象添加到对象数组中。

我的数组在 jsfiddle: https://jsfiddle.net/5w4zhw92/

预期

var sensors = [
{ id: 'led', name: 'LED', type: { port: '', path: '' } },
{ id: 'temp', name: 'TEMP', type: { path: '' } },
];

最佳答案

它已经可以工作了,你只需要在使用它之前声明变量。首先声明 sensorType 然后使用它。

var sensorType = {
sender: {
port: '',
path: ''
},
receiver: {
path: ''
}
};
var sensors = [
{ id: 'led', name: 'LED', type: sensorType.sender },
{ id: 'temp', name: 'TEMP', type: sensorType.receiver }
];

console.log(sensorType.sender);
console.log(sensors);

关于javascript - 如何在javascript中将对象添加到对象数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30229440/

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