本文整理汇总了Python中blog.models.Tag.tag方法的典型用法代码示例。如果您正苦于以下问题:Python Tag.tag方法的具体用法?Python Tag.tag怎么用?Python Tag.tag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blog.models.Tag
的用法示例。
在下文中一共展示了Tag.tag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setTags
# 需要导入模块: from blog.models import Tag [as 别名]
# 或者: from blog.models.Tag import tag [as 别名]
def setTags(entry, tags):
if tags is None:
entry.tags = []
else:
try:
# Check if we got a movable type style category array of structs
if type(tags[0]) == dict:
# We have a MT style list of IDs.
tags = getTagsFromMT(tags)
except:
pass
# Create any tags that don't exist yet, and then add them to the entry
for tag in tags:
if len(Tag.objects.filter(tag__iexact=tag)) == 0:
new_tag = Tag()
new_tag.tag = tag
new_tag.save()
entry.tags = [Tag.objects.get(tag__iexact=tag) for tag in tags]