迭代字符串数组

时间:2017-05-30 13:15:39

标签: angular typescript

我收到此string[]

enter image description here

但是当我迭代它时

subUrl(arr) {
        for(let i of arr) { console.log(i); }
}

它没有记录任何内容。怎么了?

1 个答案:

答案 0 :(得分:3)

您的数据是数组内部的数组,需要两个循环

   for (let firstarray of arr){
       for (let i of firstarray ){
          console.log(i);
       }
    }