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.
所以我有一个这样的字符串:
2012-01-01T00:00:00Z
我可以将其转换为可以保存在模型中的对象,该对象具有以下字段:
start_date = models.DateTimeField()
只需将此字符串解析为日期时间对象。
答案在这里: 如何解析 ISO 8601 格式的日期?
所以你可以使用dateutil.parser或iso8601模块。
dateutil.parser
iso8601