I got the following sample code, if I use:
<p>{{usr[0]}}</p>
works, but if I refer to title, I got a 'unncaught TypeError: Cannot read property 'title' of undefined':
<p>{{usr[0].title}}</p>
ncaught TypeError: Cannot read property 'title' of undefined
what is the right way to handle this case? thanks