Does anybody know how I can SKIP JSON ordering altogether when I use ng-repeat (in a painless way probably)?
For example, my source JSON looks something like this -
{
"title": "Title",
"description": "Description",
"moreInfo": "Moreinformation"
}
Once I use it in ng-repeat, it orders them alphabetically. Something like this -
{
"description": "Description",
"moreInfo": "Moreinformation",
"title": "Title"
}
My ng-repeat looks something like this -
<div ng-repeat="(key,data) in items">
<span class="one"> {{key}} </span>
<span class="two"> {{data}} </span>
</div>
I've seen people having a separate array of the keys and using them to identify the JSON objects, ultimately avoiding alphabetical sorting.
Is there an elegant way to do this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…