<legend id='OFcqS'><style id='OFcqS'><dir id='OFcqS'><q id='OFcqS'></q></dir></style></legend>
  • <tfoot id='OFcqS'></tfoot>
    <i id='OFcqS'><tr id='OFcqS'><dt id='OFcqS'><q id='OFcqS'><span id='OFcqS'><b id='OFcqS'><form id='OFcqS'><ins id='OFcqS'></ins><ul id='OFcqS'></ul><sub id='OFcqS'></sub></form><legend id='OFcqS'></legend><bdo id='OFcqS'><pre id='OFcqS'><center id='OFcqS'></center></pre></bdo></b><th id='OFcqS'></th></span></q></dt></tr></i><div id='OFcqS'><tfoot id='OFcqS'></tfoot><dl id='OFcqS'><fieldset id='OFcqS'></fieldset></dl></div>
  • <small id='OFcqS'></small><noframes id='OFcqS'>

        <bdo id='OFcqS'></bdo><ul id='OFcqS'></ul>

        如何从模型中在 django 中设置 DateField 格式?

        How can I set a DateField format in django from the model?(如何从模型中在 django 中设置 DateField 格式?)
              <tbody id='jwxtw'></tbody>
            • <bdo id='jwxtw'></bdo><ul id='jwxtw'></ul>
              <tfoot id='jwxtw'></tfoot>
              <legend id='jwxtw'><style id='jwxtw'><dir id='jwxtw'><q id='jwxtw'></q></dir></style></legend>

                • <i id='jwxtw'><tr id='jwxtw'><dt id='jwxtw'><q id='jwxtw'><span id='jwxtw'><b id='jwxtw'><form id='jwxtw'><ins id='jwxtw'></ins><ul id='jwxtw'></ul><sub id='jwxtw'></sub></form><legend id='jwxtw'></legend><bdo id='jwxtw'><pre id='jwxtw'><center id='jwxtw'></center></pre></bdo></b><th id='jwxtw'></th></span></q></dt></tr></i><div id='jwxtw'><tfoot id='jwxtw'></tfoot><dl id='jwxtw'><fieldset id='jwxtw'></fieldset></dl></div>

                  <small id='jwxtw'></small><noframes id='jwxtw'>

                • 本文介绍了如何从模型中在 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 格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Kivy 1.9.0 Windows package KeyError: #39;rthooks#39;(Kivy 1.9.0 Windows 包 KeyError: rthooks)
                  Python Kivy: how to call a function on button click?(Python Kivy:如何在按钮单击时调用函数?)
                  How to disable a widget in Kivy?(如何禁用 Kivy 中的小部件?)
                  Centering an object in Kivy(在 Kivy 中将对象居中)
                  How to downgrade to Python 3.4 from 3.5(如何从 Python 3.5 降级到 Python 3.4)
                  Change button or label text color in kivy(在kivy中更改按钮或标签文本颜色)
                • <legend id='MaPqL'><style id='MaPqL'><dir id='MaPqL'><q id='MaPqL'></q></dir></style></legend>
                    <tbody id='MaPqL'></tbody>
                    <bdo id='MaPqL'></bdo><ul id='MaPqL'></ul>

                          <i id='MaPqL'><tr id='MaPqL'><dt id='MaPqL'><q id='MaPqL'><span id='MaPqL'><b id='MaPqL'><form id='MaPqL'><ins id='MaPqL'></ins><ul id='MaPqL'></ul><sub id='MaPqL'></sub></form><legend id='MaPqL'></legend><bdo id='MaPqL'><pre id='MaPqL'><center id='MaPqL'></center></pre></bdo></b><th id='MaPqL'></th></span></q></dt></tr></i><div id='MaPqL'><tfoot id='MaPqL'></tfoot><dl id='MaPqL'><fieldset id='MaPqL'></fieldset></dl></div>

                          <small id='MaPqL'></small><noframes id='MaPqL'>

                        1. <tfoot id='MaPqL'></tfoot>