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.
我想为我的 Django 应用程序提供当前时间,客户端将使用 Javascript 解析此日期时间戳。我包括我的时区:
Apr 30, 2012 12:38:08 -400n
我目前使用以下方式来做到这一点:
datetime.now().strftime("%b %d, %Y %H:%M:%S -400n")
然而,最终部分-400n是有问题的,省光和所有其他的,它可以改变,简单的编码将是无意义的,有没有另一种方法可以自动实现这一点?
-400n
升级到 django 1.4,然后阅读关于时区支持的文档,这是 1.4 的一个新特性。
您需要使用另一个库。我已经使用了PyTZ和dateutil。