最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to update current values inside an angular.forEach()? - Stack Overflow

programmeradmin0浏览0评论

I am trying to convert a portion of an object's values from integer values 1 or 0 to boolean values true or false.

The structure is as follows:

angular.forEach(a.b.c, function (options) {
    ...
    angular.forEach(options, function (value, option) {
        if (value == 0) {
            option = false;
        } else {
            option = true;
        }
        console.log(option + " = " + value);  // This shows correct results;
    }
}
console.log(a.b.c) // when navigating to the options, the options have not changed from their integer values.

What am I missing?

I am trying to convert a portion of an object's values from integer values 1 or 0 to boolean values true or false.

The structure is as follows:

angular.forEach(a.b.c, function (options) {
    ...
    angular.forEach(options, function (value, option) {
        if (value == 0) {
            option = false;
        } else {
            option = true;
        }
        console.log(option + " = " + value);  // This shows correct results;
    }
}
console.log(a.b.c) // when navigating to the options, the options have not changed from their integer values.

What am I missing?

Share Improve this question asked May 14, 2015 at 0:38 Raphael RafatpanahRaphael Rafatpanah 20k28 gold badges105 silver badges174 bronze badges 2
  • Yes, exactly, how can I update the value? – Raphael Rafatpanah Commented May 14, 2015 at 0:44
  • you may have to set a variable to the operation or pass in the object as the context docs.angularjs/api/ng/function/angular.forEach. Also you could probably find a way to do this without two forEach loops. – BillPull Commented May 14, 2015 at 0:45
Add a ment  | 

1 Answer 1

Reset to default 9

You are just changing the value of the local variable to false/true, not changing the value of the object.

var array = [{
  key: 1
}, {
  key: 0
}];
angular.forEach(array, function(options) {
  angular.forEach(options, function(value, option) {
    if (value == 0) {
      options[option] = false;
    } else {
      options[option] = true;
    }
    //the if else can be simplified to
    //options[option] = value != 0;
    console.log(option + " = " + options[option]);
  })
})

console.log(array);
<script src="https://ajax.googleapis./ajax/libs/angularjs/1.2.23/angular.min.js"></script>

If you know the key to be updated then

var array = [{
  key: 1
}, {
  key: 0
}];
angular.forEach(array, function(options) {
  options.key = options.key != 0;
})

console.log(array);
<script src="https://ajax.googleapis./ajax/libs/angularjs/1.2.23/angular.min.js"></script>

发布评论

评论列表(0)

  1. 暂无评论