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.
我有一个 SQLite DB,它有几列日期时间类型。这些列以 HH:mm:ss 格式存储时间(只是时间而不是日期)。当我尝试访问此字段时,它返回为 null。在 models.py 中,此字段已映射到等效的 models.DateTimeField。
访问这些字段的正确方法是什么?是否需要 models.DateTimeField 必须以 YYYY-MM-DD HH:mm:ss 格式 insqlite 存储?
我并不惊讶于DateTimeField期望日期和时间。
DateTimeField
试试TimeField吧。
TimeField
(请注意,SQLite 没有本地日期/时间类型;它只是一个字符串。)