I have a data set that looks like this
data[
{ Case:
"case" : 'a'
{AIO:
'aio_id' : 1,
'custnum': 1
{customer:
'custnum':1,
'firstname':'johndoe'}
}
}];
I am trying to access the firstname through angularas below
{{data.Case.AIO[0].custnum}} //shows1
{{data.AIO.customer[0].firstname}} //still shows 1
Can you please tell me what I am doing wrong by dotting down as my results still render 1.