How can I set a DateField format in django from the model?(如何从模型中在 django 中设置 DateField 格式?)
问题描述
我正在创建一个 django 应用程序,但我遇到了下一个问题:当我想设置日期时会显示此错误:
I am creating a django application and I have the next problem: this error is shown when I want to set a date:
ValidationError [u"'12/06/2012' value has an invalid date format. It must be in YYYY-MM-DD format."]
对于这个模型:
class ModelA(models.Model):
date1 = models.DateField(null=True)
date2 = models.DateField(null=True)
如何将 DateField 格式设置为 %m/%d/%Y.
How can I set the DateField format to be %m/%d/%Y.
选项input_formats"无法识别.
谢谢!
推荐答案
正如@bruno 在他的回答中提到的, input_formats 是一个表单字段,但是它可以用来控制保存的日期格式来自模型.
As @bruno as mentioned in his answer, input_formats is a forms field, however it can be used to control the date format saved from the model.
在 settings.py 中设置 DATE_INPUT_FORMATS 如下:
In settings.py set DATE_INPUT_FORMATS as below:
DATE_INPUT_FORMATS = ['%d-%m-%Y']
在您的表单中,您可以执行以下操作:
And in your form you could do something like below:
class ClientDetailsForm(ModelForm):
date_of_birth = DateField(input_formats=settings.DATE_INPUT_FORMATS)
class Meta:
model = ModelA
这篇关于如何从模型中在 django 中设置 DateField 格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从模型中在 django 中设置 DateField 格式?
基础教程推荐
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 包装空间模型 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
