2

だから私はこのような文字列を持っています:

2012-01-01T00:00:00Z

これを、このフィールドを持つモデルに保存できるオブジェクトに変換できますか。

start_date = models.DateTimeField()
4

1 に答える 1

3

just need to parse this string into a datetime object.

Answers are here: How to parse an ISO 8601-formatted date?

so you can use dateutil.parser or iso8601 modules.

于 2013-01-18T19:14:03.387 に答える