我将一个字符串发送到服务器,我希望在保存到数据库之前将其转换为时间戳。
我想在保存数据之前执行此功能。
date = time.strptime(date, "%Y-%m-%d %H:%M:%S")
日期作为字符串发送,我想在保存到数据库之前将其转换为TIMESTAMP。
感谢您的帮助。
#models.py
from tastypie.utils.timezone import now
from django.db import models
from django.utils.text import slugify
class Entry(models.Model):
pub_date = models.DateTimeField()
Temperature = models.FloatField()
def __unicode__(self):
return self.title
#api.py
from tastypie import fields
from tastypie.resources import ModelResource
from models import Entry
from tastypie.authorization import Authorization
class EntryResource(ModelResource):
class Meta:
queryset = Entry.objects.all()
resource_name = 'entry'
authorization = Authorization()
答案 0 :(得分:0)
在资源上使用水合物方法。
sub-collections