配置文件有标签。我正在渲染profile_tags
和的列表top_tags
。我将如何检查 top_tags 中的每个标签是否在 profile_tags 中?
我在我的观点中尝试过的:
has_tag = False
profile_tags = profile.tags.all()
top_tags = Tag.objects.all()
for top in top_tags:
if top in profile_tags:
has_tag = True
预先感谢您的帮助!