我只是在学习js,并且有一些在php上可行的问题,但在js上却无法以相同的方式进行。我需要一个数组,将其循环,然后将值从每个数组推到我的不同数据数组。这是我的Vue的一部分
shares() {
this.preferredEquities.forEach(function(element) {
// what is the right way to do it?
this.shares_amount.push(element.capital_committed)
});
},