本文整理汇总了Python中rest_framework.fields.DateTimeField方法的典型用法代码示例。如果您正苦于以下问题:Python fields.DateTimeField方法的具体用法?Python fields.DateTimeField怎么用?Python fields.DateTimeField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rest_framework.fields
的用法示例。
在下文中一共展示了fields.DateTimeField方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_updated_at
# 需要导入模块: from rest_framework import fields [as 别名]
# 或者: from rest_framework.fields import DateTimeField [as 别名]
def get_updated_at(self, participant):
if participant.updated_at > participant.conversation.updated_at:
date = participant.updated_at
else:
date = participant.conversation.updated_at
return DateTimeField().to_representation(date)
示例2: get_json
# 需要导入模块: from rest_framework import fields [as 别名]
# 或者: from rest_framework.fields import DateTimeField [as 别名]
def get_json(self):
"""Return the JSON format of the mbox """
msg = {}
msg["message_id"] = self.get_message_id()
msg["in_reply_to"] = self.get_in_reply_to() or ""
msg["date"] = DateTimeField().to_representation(self.get_date())
msg["subject"] = self.get_subject()
msg["sender"] = addr_db_to_rest(self.get_from())
msg["recipients"] = [
addr_db_to_rest(x) for x in (self.get_to() + self.get_cc())
]
msg["mbox"] = self.get_mbox()
return msg