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.
我的模板中的 template.html 我给出了以下行: 其中 date_edit 包含当前时间。它总是显示 0 分钟前。我该怎么做???
{{date_edit|timesince}} ago
如果 date_edit 存储当前时间,显示 0 分钟是正常的。您应该存储上次编辑时间。auto_now=True您可以通过在模型的 DateTimeField 属性中添加参数来实现此目的。这样,仅当您保存模型时它才会更新。
auto_now=True