Django模型DateTimeField设置auto_now_add格式或修改序列化程序

时间:2016-05-20 12:18:56

标签: python django datetime serialization python-datetime

我的模型中有这个字段:

createdTime = models.DateTimeField(_('Creation date'), help_text=_('Date of the creation'),
                                   auto_now_add=True, blank=True)

它以这种格式保存:

  

2016-05-18T15:37:36.993048Z

所以我想把它转换为这种格式DATE_INPUT_FORMATS = ('%d-%m-%Y %H:%M:S'),但我不知道该怎么做。

我有一个简单的序列化程序类,我可以覆盖它来修改格式吗?或者可能创建一个get_date()模型方法?

class ObjectSerializer(serializers.ModelSerializer):
    """
    Serializer for object.
    """
    class Meta:
        model = Object

我的设置:

DATETIME_FORMAT = '%d-%m-%Y %H:%M:%S'

USE_I18N = True

USE_L10N = False

USE_TZ = False

2 个答案:

答案 0 :(得分:4)

按照指定hereDATETIME_FORMAT设置settings.py

  

用于在任意中显示日期时间字段的默认格式   系统的一部分。请注意,如果USE_L10N设置为True,那么   locale-dictated格式具有更高的优先级并将被应用   代替

settings.py的日期部分应该如此:

DATETIME_FORMAT = '%d-%m-%Y %H:%M:S' 
USE_L10N = False
USE_TZ = False # if you plan to disable timezone support

或者,您可以通过执行以下操作手动更改格式:

import datetime

datetime_str = '2016-05-18T15:37:36.993048Z'
old_format = '%Y-%m-%dT%H:%M:%S.%fZ'
new_format = '%d-%m-%Y %H:%M:%S'

new_datetime_str = datetime.datetime.strptime(datetime_str, old_format).strftime(new_format)
print(new_datetime_str)
#'18-05-2016 15:37:36'

此转化可以作为建议的get_date()方法

添加到序列化程序或模型中

答案 1 :(得分:0)

您可以在模型的序列化程序中定义 DateTimeField 的格式 (在 django 3.1.5 上检查):

class ObjectSerializer(serializers.ModelSerializer):
   createdTime = serializers.DateTimeField(format="%d-%m-%Y %H:%M:%S")

   class Meta:
      model = Object
      fields = '__all__'