gpt4 book ai didi

javascript - 更新数组对象值

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:32:48 27 4
gpt4 key购买 nike

我想更新我保存在工厂中的全局数组中的一些值。我使用 get 方法获取数据,但是 set 函数不知何故无法完成它的工作,并且数组中的值没有得到更新。我错过了什么?

.factory('messageList', function () {
var Messages =
[
{ "title":"Cash in", "icon":"ion-social-euro",
"dailyValue": "0", "weeklyValue": "0", "monthlyValue": "0",
"category": "financial", "active": "true"
},
{ "title":"Sales orders", "icon":"ion-social-euro",
"dailyValue": "0", "weeklyValue": "0", "monthlyValue": "0",
"category": "sales", "active": "true"
}
]

return {
get: function() {
return Messages;
},
set: function(title, key, newValue) {
for (var i = 0; i < Messages.length; i++) {
if(Messages[i].title == title){
Messages[i].key = newValue;
}
}
}
}
})

这就是我尝试更新 Controller 中的值的方式:

messageList.set("Sales orders","dailyValue", $Scope.sum);

最佳答案

因为 key 是一个变量,所以使用这个

Messages[i][key] = newValue;

Messages[i].key 将在您的对象中查找具有键“key”而不是具有变量值的键的元素

关于javascript - 更新数组对象值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33706220/

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