本文整理汇总了Python中blog.models.Article.last_update_time方法的典型用法代码示例。如果您正苦于以下问题:Python Article.last_update_time方法的具体用法?Python Article.last_update_time怎么用?Python Article.last_update_time使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blog.models.Article
的用法示例。
在下文中一共展示了Article.last_update_time方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: article_publish
# 需要导入模块: from blog.models import Article [as 别名]
# 或者: from blog.models.Article import last_update_time [as 别名]
def article_publish(request, article_type, article_id):
author = Author.objects.get(name='结夜野棠')
category = Category.objects.get(url_name=request.POST['category'])
article = Article(title=request.POST['title'],
author=author,
category=category,
abstract=request.POST['abstract'],
text=request.POST['content'])
article.save()
if article_type == "draft":
Draft.objects.get(id=article_id).delete()
tags = request.POST['tags']
deal_article_tags(article, tags)
article.last_update_time = article.publish_time
article.save()
return HttpResponse(reverse("blog:article", args=(article.id,)))