本文整理汇总了Python中models.Tag.post_ids方法的典型用法代码示例。如果您正苦于以下问题:Python Tag.post_ids方法的具体用法?Python Tag.post_ids怎么用?Python Tag.post_ids使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Tag
的用法示例。
在下文中一共展示了Tag.post_ids方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_tags
# 需要导入模块: from models import Tag [as 别名]
# 或者: from models.Tag import post_ids [as 别名]
def create_tags(self, tags, post_id):
post_tags = ''
if tags is str:
tags = tags.split(',')
tags = set(tags)
for tag in tags:
tag = tag.strip()
if not tag:
continue
the_tag = self.get_tag_by_title(tag)
if not the_tag:
the_tag = Tag()
the_tag.title = tag
the_tag.slug = tag
the_tag.post_count = 1
db.session.add(the_tag)
db.session.commit()
else:
the_tag.post_count += 1
if not the_tag.post_ids:
the_tag.post_ids = '%s' % post_id
else:
ids = the_tag.post_ids.split('|')
ids.append(str(post_id))
ids = list(set(ids))
the_tag.post_ids = '|'.join(ids)
db.session.add(the_tag)
if post_tags == '':
post_tags = '%s' % the_tag.id
else:
ids = post_tags.split('|')
ids.append(str(the_tag.id))
ids = list(set(ids))
post_tags = '|'.join(ids)
db.session.commit()
return post_tags