简体   繁体   English

如何使用Express对JSON响应进行排序

[英]How to sort a JSON response with Express

I'm wondering if is there any way to sort a JSON response with Express JS 我想知道是否有任何方法可以使用Express JS对JSON响应进行排序

my JSON file looks like with Postman : 我的JSON文件与Postman相似:

{
"id":"",
"fname":"",
"lname":"",
"country":"",
"phonen":""
}

and I want to change the order and take phonen to the top. 我想更改顺序并将phonen移到顶部。

like 喜欢

   {
    "id":"",
    "phonen":"",
    "fname":"",
    "lname":"",
    "country":""
    }

Objects in Javascript does not guarantee order, you would read this relative response . Javascript中的对象不保证顺序, 您将阅读此相对响应
In bpierre response you could realize bpierre响应中,您可以意识到

Since ECMAScript 2015, using the Map object could be an alternative. 从ECMAScript 2015开始,可以使用Map对象。 A Map shares some similarities with an Object and guarantees the keys order see the docu 地图与对象共享一些相似之处,并保证按键顺序 请参见文档

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM