Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个返回名字和姓氏的 WCF。它一直运作良好。然后我修改了服务以返回更多数据。它在该字段中返回 null。此外,排序似乎搞砸了。新插入的字段插入在名字和姓氏之间。所以现在它返回:
"firstname": "John", "fullname": null, "lastname": "Doe",
JSON 对象没有键的顺序,永远不要指望特定的顺序。
JSON 对象不实现排序,你不应该依赖它:它不是规范的一部分。
至于为什么“全名”返回为空(假设这是出乎意料的),这似乎可能取决于服务/实现的细节;您没有提供足够的信息来破译与此相关的任何内容。