I can access the contents of an Array like this:
{{teste02[0]}}
And I get the following as a return:
{"assigned_date":"1969-12-31 21:00:00.000","user_id":"101","role_id":"101","group_id":
{"path":"/administrador","displayName":"Administrador","icon":"",
"name":"administrador","description":"","parent_path":"",
"creation_date":"2017-08-18 11:04:28.846","id":"302",
"created_by_user_id":"-1","last_update_date":"2017-08-18 11:04:28.846"},"assigned_by_user_id":"-1"}
But what I really need is to access the content of the name
subArray. I've tried {{teste02[0][0].name}}
but nothing is returned, how could I access it?