Iterate through nested json array in angular controller and get unique values

前端 未结 5 679
Happy的楠姐
Happy的楠姐 2020-12-31 08:17

I need to iterate through nested json array which looks like that

[
  {
    \"title\": \"EPAM\",
    \"technologies\": [
        \"PHP\",
        \".net\",
          


        
5条回答
  •  感动是毒
    2020-12-31 09:13

    If you need only to display nested array on UI, you can do that straight in view e.g.

                
                    {{i.Value}}
                    
                        
    {{c.Value}}

提交回复
热议问题