更新数组对象值

时间:2015-11-14 07:33:57

标签: javascript angularjs angular-promise

我想更新我保存在工厂中的全局数组中的某些值。 我使用get方法获取数据,但设置函数以某种方式不起作用,并且数组中的值不会更新。我错过了什么?

.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;
          }
       }
   }
 }
})

这是我尝试更新控制器中的值的方法:

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

1 个答案:

答案 0 :(得分:5)

由于key是变量,请使用此

Messages[i][key] = newValue;

Messages[i].key将使用键'key'查找对象中的元素,而不是使用变量值的键