我得到從服務器端的JSON在以下順序:angularjs擾亂JSON結構
[{
"outlet_id": 83
"outlet_name": "My Outlet"
"address": "My Outlet"
"shop_number": "123"
"street": "123"
"building_no": "52"
"key_location": "Location 123"
"mohallah": "Mohalla 123"
"landline": "1235869"
"owner_name": "Owner"
"Manufecture": "A"
"BrandName": "B"
"Variant": "C"
"BRANDDiscription": "D"
"SIZE": "E"
"Variant/Promotions": null
"Segment": null
}]
但是當我展示它,它擾亂秩序,我使用的是NG-重複像:
<td ng-repeat="(key, value) in vm.outletFieldAttrsList[0]">{{value}}</td>
屬性的順序與服務器返回的JSON中的順序不同,那裏的任何人都可以提供幫助?