本文整理匯總了Python中qa.models.Question.added_at方法的典型用法代碼示例。如果您正苦於以下問題:Python Question.added_at方法的具體用法?Python Question.added_at怎麽用?Python Question.added_at使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類qa.models.Question
的用法示例。
在下文中一共展示了Question.added_at方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: save
# 需要導入模塊: from qa.models import Question [as 別名]
# 或者: from qa.models.Question import added_at [as 別名]
def save(self):
question = Question(**self.cleaned_data)
question.added_at = datetime.now()
question.rating = 0
question.author = self._user
question.save()
return question