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.
我想格式化 JSON 日期。我搜索并找到了这个链接。Json Date当我使用上述问题中提到的@Roy's ans 时,我得到以下格式的结果:
Mon Jul 16 2012 14:10:42 GMT+0545 (Nepal Standard Time)
但我想要一个格式的结果:
Mon Jul 16 2012 14:10:42
我怎样才能避免不必要的部分来获得期望的结果。谢谢。
var dt = new Date().toString(); console.log(dt); // Mon Jul 16 2012 15:21:09 GMT+0530 (India Standard Time) dt = dt.substr(0, dt.indexOf('GMT')); console.log(dt); // Mon Jul 16 2012 15:21:09
从外观上看,这似乎是你想要的......