我在angular2里定义了一个嵌套的循环来展示一个表单,现在我要处理用户输入进来的数据,代码如下
this.data = value;
for (var i=0;i<this.questionlist.length;i++){
this.questionId[i]=this.questionlist[i].id;
this.tempdata = this.questionlist[i].ans;
for(var j=0;j<this.tempdata.length;j++){
console.log(this.data[this.questionId[i]].(this.tempdata[j]))
}
}
其中每一个数组以及里面嵌套的数组的名字都是从之前获得的数据的方法,总的来说就是不是固定的,现在我想读出每一个数值,那么问题来了,我该怎么样才能读到最后的那个this.tempdata[j]
为名字的那个嵌套的值?
今天想了好久查了好久都没办法_(:з」∠)_
函数式编程
相关分类