python 时间模块

datetime 模块中 常用 second 和 total_seconds() 来获取时间差

seconds 忽略天 只看时分秒

total_seconds() 真正的时间差 包含天

1. 模型创建时间字段

create_time = models.DateTimeField("创建时间", null=True, auto_now_add=True)
update_time = models.DateTimeField("更新时间", null=True, auto_now=True)

 时间类型转换

 

 

 

posted @ 2021-03-02 20:12  半日闲1  阅读(54)  评论(0编辑  收藏  举报