I get JSON data with PHP, but with an ng-repeat error:
[ngRepeat:dupes] Duplicates in repeater are not allowed
I tried track by $index, but every time the browser crashes with track by $index, it works fine in localhost, but in the web hosting I get the error above.
Any solution?
JSON data:
{
id : "1",
title : "Title1",
src : "Source1"
},
{
id : "2",
title : "Title2",
src : "Source2"
}
source
share