<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 格式?

        时间:2023-06-06
              <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 格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 Python 中将变量的每一项打印在单独的行上 下一篇:字符串格式 JSON 字符串给出 KeyError

                  相关文章

                • <legend id='MaPqL'><style id='MaPqL'><dir id='MaPqL'><q id='MaPqL'></q></dir></style></legend>
                    <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>