แก้ไขแล้ว: django อธิบายฟิลด์วันที่และเวลาเป็นถ่าน

ปัญหาหลักคือ django อธิบายฟิลด์วันที่และเวลาเป็นถ่านจะไม่ทำงานกับฟิลด์วันที่และเวลาบางฟิลด์ ตัวอย่างเช่น หากคุณมีฟิลด์ชื่อ “created_at” และคุณพยายามใส่คำอธิบายประกอบลงในคลาส CharField django จะไม่อนุญาตให้คุณบันทึกข้อมูลของคุณ

field

I have a model with a datetime field and I want to annotate it to a charfield. I tried this:
<code>MyModel.objects.values('date').annotate(date_char=CharField())
</code>
but it gives me an error: <code>Cannot resolve keyword 'CharField' into field.</code>


A:

You can use <code>Func</code>:  https://docs.djangoproject.com/en/dev/ref/models/expressions/#func-expressions  and then use the <code>.format()</code> method on the resulting string to format it however you want (e.g., YYYY-MM-DD):   https://docs.python.org/2/library/string.html#formatstrings  .  Something like this should work:  
<code>from django.db import models     # for Func expression class   
from django import db           # for connection alias, used in Func expression class   

                                # create connection alias, used in Func expression class   

                                # (this is only necessary if you are using multiple databases)   

                                # replace 'default' with your database name if using multiple databases   

my_conn = db._connections['default']    

                                # create Func expression object that will convert date to string format YYYY-MM-DD    

my_func = models.Func(my_conn, function='TO_CHAR', template='%(function)s(%(expressions)s::DATE, 'YYYY-MM-DD')')    

                                # use my_func in query as follows:    

MyModelObjects = MyModelObjects .objects .values('date') .annotate(date_char=my_func)     
</code>

วันที่และเวลาใน Django

Django จัดเตรียมประเภทวันที่และเวลาที่สะดวกซึ่งสามารถใช้เพื่อแสดงวันที่และเวลาได้

ในการสร้างวัตถุ datetime ให้ใช้ตัวสร้าง datetime:

>>> จาก django.utils.datetime นำเข้า datetime >>> d = datetime(2015, 11, 25) >>> d 2015-11-25 00:00:00

ตัวอย่างของรหัสวันที่และเวลา

ต่อไปนี้เป็นรายการโค้ดวันที่และเวลาตัวอย่างใน Django

จาก django.utils.datetime นำเข้า datetime จาก django.utils.translation นำเข้า gettext_lazy เป็น _ จาก django.core.urlresolvers นำเข้าย้อนกลับจาก django.db นำเข้าโมเดลคลาส User(models.Model): first_name = models.CharField(max_length=30, blank=True, nullable=False) last_name = models.CharField(max_length=30, blank=True, nullable=False) email = models.EmailField() def __str__(self): return self._first_name + ' ' + self._last_name + '@' + self._email

กระทู้ที่เกี่ยวข้อง:

แสดงความคิดเห็น