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.
REST 应该向客户端提供可读信息。因此,对于单个日期(没有时间部分),我希望得到类似的结果:
"birthday": "12th august 1980"或者也许是德国化的"12. August 1980"
"birthday": "12th august 1980"
"12. August 1980"
但是,当使用德语语言环境设置将英语表示发送回服务器时,这会导致麻烦。那么在日期的情况下,更一般的表示不是有用吗?例如1980-08-12,客户端应用程序可以对其进行转换以重新获得可读性。
1980-08-12
是的,使用日期的国际表示以避免出现问题。