作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个应用 news
和 article
,它们的模型名称完全相同 Comment
:
class Comment(models.Model):
author = models.ForeignKey(User)
created = models.DateTimeField(auto_now_add=True)
title = models.CharField(max_length=100, default='', blank=True)
body = models.TextField()
post = models.ForeignKey(Photo)
published = models.BooleanField(default=True)
现在,在一个 View 中,我想从两个应用程序中删除某些评论:
Comment.objects.filter(author=someauthor).delete()
如何在不更改模型名称的情况下实现这一目标?
最佳答案
您可以使用 import ... as ...
这样两个模型名称就不会冲突:
from news.models import Comment as NewsComment
from article.models import Comment as ArticleComment
...
NewsComment.objects.filter(author=someauthor).delete()
ArticleComment.objects.filter(author=someauthor).delete()
关于python - 如何从两个具有相同型号名称的应用程序中删除对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34351073/
我是一名优秀的程序员,十分优秀!