Django-Taggit获取随机标签,跳过那些未分配给帖子的标签

时间:2017-05-31 05:15:47

标签: python django django-taggit

我想在用户点击搜索栏时向用户提供随机标记的建议。到目前为止,我的代码返回了我想要的内容但是它还返回了未分配给任何Post IE的标签:当我删除帖子或删除其标签时,这些标签仍然出现在建议中。

# Get the suggestions (In View)
suggestions = Tag.objects.all().distinct().order_by('?')[:5]

# Model
class Post(models.Model):
title = models.CharField(max_length=256)
disclaimer = models.CharField(max_length=256, blank=True)
BLOGS = 'blogs'
APPLICATIONS = 'applications'
GAMES = 'games'
WEBSITES = 'websites'
GALLERY = 'gallery'
PRIMARY_CHOICES = (
    (BLOGS, 'Blogs'),
    (APPLICATIONS, 'Applications'),
    (GAMES, 'Games'),
    (WEBSITES, 'Websites'),
)
content_type = models.CharField(max_length=256, choices=PRIMARY_CHOICES, default=BLOGS)
screenshot = models.CharField(max_length=256, blank=True)
tags = TaggableManager()
body = RichTextField()
date_posted = models.DateTimeField(default=datetime.now)
date_edited = models.DateTimeField(blank=True, null=True)
visible = models.BooleanField(default=True)
nsfw = models.BooleanField()
allow_comments = models.BooleanField(default=True)
files = models.ManyToManyField(File, blank=True)

def __str__(self):
    if (self.visible == False):
        return '(Hidden) ' + self.title + ' in ' + self.content_type
    return self.title + ' in ' + self.content_type

1 个答案:

答案 0 :(得分:0)

如果您只想分配给帖子的标签,则必须在帖子中查询其标签,然后选择以下五个:

allposts = Post.objects.all()
five_tags = list(set([tag.slug for post in allposts for tag in post.tags.all()]))[:5]

(使用set()删除重复项)

修改

如果您想在选择五之前对所有标签进行随机播放,您可以执行以下操作:

import random

allposts = Post.objects.all()
all_tags_list = list(set([tag.slug for post in allposts for tag in post.tags.all()]))
random.shuffle(all_tags_list)
five_tags = all_tags_list[:5]