This is like this, if I have a three-level array datas, I want to simplify it through ts, return the data of the innermost layer, and then use it directly on the template.
I don’t know much about the use of forEach, and I got an error in practice. Beginners, I hope the masters don’t complain. Baidu has forEach without detailed explanation.
forEach
It seems that it is not from TS, but from ES. Usage is very simpleThis way you will get 1, 2, 3
If it is a multi-level array,
This way you get 1, 2, 3, 4, 5, 6
I don’t know what your specific needs are. . It would be best to add some additional explanation. Maybe what you need is not
forEach
而是map
butmap
Reference:
ES: https://developer.mozilla.org...
TS: https://www.typescriptlang.or...