gpt4 book ai didi

javascript - 如何使用索引设置项目的属性?

转载 作者:行者123 更新时间:2023-12-03 04:06:14 26 4
gpt4 key购买 nike

据Vue官方docs您可以使用这样的索引设置项目:

example.items[indexOfItem] = newValue // the value won't change
example.items.splice(indexOfItem, 1, newValue) // it will change here

如果我想像这样设置项目的属性,如何使用splice技术:

example.items[indexOfItem].property = newValue

输入示例:

example.items = [
{ property: 'a' },
{ property: 'b' }
]

最佳答案

这应该适合你。

var items = [
{ property: 'a' },
{ property: 'b' }
];
var indexOfItem = 1;
var newValue = {property:'c'};
items.splice(indexOfItem ,1, newValue);
console.log(items);

关于javascript - 如何使用索引设置项目的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44541270/

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