最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What is the Best Practice for Encoding Dates in JSON? - Stack Overflow

programmeradmin1浏览0评论

When designing a service that returns JSON to the browser (or server side JS), what is the "best" format for encoding dates in the resulting JSON response?

The data property should:

  • require as little or no parsing to convert to a Date() object
  • be sortable in the JSON representation itself

Returning the number of milliseconds since 1 January 1970 00:00:00 UTC seems like it would be the best option but is not particularly human readable when looking at the raw JSON.

What's preferred in your experience and why?

When designing a service that returns JSON to the browser (or server side JS), what is the "best" format for encoding dates in the resulting JSON response?

The data property should:

  • require as little or no parsing to convert to a Date() object
  • be sortable in the JSON representation itself

Returning the number of milliseconds since 1 January 1970 00:00:00 UTC seems like it would be the best option but is not particularly human readable when looking at the raw JSON.

What's preferred in your experience and why?

Share Improve this question asked Jan 13, 2011 at 15:55 mbrevoortmbrevoort 5,1656 gold badges41 silver badges48 bronze badges 2
  • 1 I don't think it makes sense to think about a single "Best Practice" here. There are many possible requirements for managing date/time values, and different circumstances call for different solutions. – Pointy Commented Jan 13, 2011 at 16:04
  • But this is fairly specific, consuming JSON from Javascript efficiently. I quoted "best" because it is certainly subjective and there is no one size fits all solution. I'm just trying to get some outside perspective and insight based on others experiences. – mbrevoort Commented Jan 13, 2011 at 18:28
Add a ment  | 

1 Answer 1

Reset to default 15

Personally I'd go with ISO 8601 (e.g. 2011-01-13T14:09Z).

It's well supported by virtually every programming language around, it's fairly easily human readable and, if you absolutely have to roll your own parser/formatter, it's fairly easy to deal with there too. It also has the sortable property you wanted.

发布评论

评论列表(0)

  1. 暂无评论