Django日期时间格式DD-MM-YYYY

mftmpeh8  于 2023-08-08  发布在  Go
关注(0)|答案(1)|浏览(104)

我想设置日期格式DD-MM-YYYY但错误django.core.exceptions.ValidationError:['“23.07.2023 21:00:11”值的日期格式无效。必须是YYYY-MM-DD格式。
帮帮我

create_date = models.DateField(blank=False, default=datetime.now().strftime(("%d.%m.%Y %H:%M:%S")))```

I want to set the date format  DD-MM-YYYY 
but Error django.core.exceptions.ValidationError: ['“23.07.2023 21:00:11” value has an invalid date format. It must be in YYYY-MM-DD format.']

字符串

tzxcd3kk

tzxcd3kk1#

在您的模型表单中尝试此操作

class YourModelForm(forms.ModelForm):
    class Meta:
        model = YourModel
        fields = '__all__'
        widgets = {
            'create_date': forms.DateTimeInput(attrs={'input_format': '%d-%m-%Y %H:%M:%S'}),
        }

字符串

相关问题