我需要用let创建一个动态数组。 现在将显示为其中一部分的json具有不同数量的元素。当在数组中使用一定数量的元素时,它将失败
我正在将值分配给let然后将其移动到json
我只能设法在数组中使用静态且已定义数量的元素。
let constantValues = {
"values": [{
"name": null,
"value": null
}, {
"name": null,
"value": null
}]
}
createConstantValue(value: string, type: String, index:number ) {
console.log("createConstantValue");
console.log(value, type, index);
const name = type;
constantValues.values[index].name = name;
constantValues.values[index].value = value;
console.log('Ferdig å sette verdi');
productCreationSet.constantValues = contantValues;
console.log(productCreationSet);
this.productCreationSet = productCreationSet;
}
constantValues如何处理数组中任意数量的元素?