标签: angular typescript
我收到此string[]
string[]
但是当我迭代它时
subUrl(arr) { for(let i of arr) { console.log(i); } }
它没有记录任何内容。怎么了?
答案 0 :(得分:3)
您的数据是数组内部的数组,需要两个循环
for (let firstarray of arr){ for (let i of firstarray ){ console.log(i); } }