но в модели datetime, сделал в сериалайзере по документации def validate_<field_name>, но все равно выдает Datetime has wrong format. Не подскажите как решить проблему?
to_internal_value If you want to create a custom field, you'll need to subclass Field and then override either one or both of the .to_representation() and .to_internal_value() methods. These two methods are used to convert between the initial datatype, and a primitive, serializable datatype. Primitive datatypes will typically be any of a number, string, boolean, date/time/datetime or None. https://www.django-rest-framework.org/api-guide/fields/
В этом методе надо сделать преобразование по соответствующему ключу и дело в шляпе
Ты в неправильном формате присылаешь строку с датой, можешь либо на фронтенде формат строки изменить, либо на бекенде указать какой формат принимаешь. Можно это сделать как глобально для всего проекта через настройку DATETIME_INPUT_FORMATS, так и конкретно только для этого поля через аргумент input_formats https://www.django-rest-framework.org/api-guide/fields/#date-and-time-fields input_formats - A list of strings representing the input formats which may be used to parse the date. If not specified, the DATETIME_INPUT_FORMATS setting will be used, which defaults to ['iso-8601']
Обсуждают сегодня