时区和 DateTimeField - Django

发布于 2024-08-27 04:31:49 字数 377 浏览 10 评论 0原文

我正在尝试实现“不久前”功能,用于在网站上显示项目。 当我缓存页面时,我希望使用 javascript 来呈现“时间之前”。

Javascript 知道本地时间,可能还知道本地计算机的时区,因此我可以使用它,但这需要对服务器的时区进行硬编码。

因此,我试图找出一种简单的方法来通过 ISO 8601< /strong> 时间戳,采用 GMT 时间。有没有简单直接的方法来做到这一点?


非常感谢您的帮助! =)

I'm trying to implement a "time ago" feature, for the displaying of items on a site.
As I'm caching the pages I wish to use javascript in order to render the "time ago".

Javascript knows local time and problably the Timezone of the local machine so I could play with that, but that would require to hard code the server's timezone.

Therefore I'm trying to figure out a simple way to pass a ISO 8601 timestamp, in GMT time. Is there any simple and straight forward way for doing this?


Help would be much appreciated! =)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只有影子陪我不离不弃 2024-09-03 04:31:49

python datetime 对象有一个输出 ISO 8601 时间戳的方法 此处

该页面还包含有关时区操作的信息。 timedelta 对象也应该很有用为你。

The python datetime objects has a method for outputting an ISO 8601 timestamp here.

That page also has information on timezone manipulation. The timedelta object should also be useful for you.

晨与橙与城 2024-09-03 04:31:49

我个人不会使用 javascript 来执行此操作。是的,它有本地时间,但这也意味着当 javascript 最终在页面上呈现时,用户将看到时间戳会发生变化。

也就是说,假设您在页面加载之前不执行 JavaScript。

I wouldn't use javascript to do this personally. Yes it has their local time, but it also means that the user will then see the timestamps will change when the javascript finally renders on the page.

That is, assuming you're properly not executing your javascript until the page is loaded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文