当前位置: 首页>>代码示例>>Python>>正文


Python Tag.post_count方法代码示例

本文整理汇总了Python中models.Tag.post_count方法的典型用法代码示例。如果您正苦于以下问题:Python Tag.post_count方法的具体用法?Python Tag.post_count怎么用?Python Tag.post_count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在models.Tag的用法示例。


在下文中一共展示了Tag.post_count方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: create_tags

# 需要导入模块: from models import Tag [as 别名]
# 或者: from models.Tag import post_count [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
开发者ID:xiaojunchan,项目名称:YaBlog,代码行数:38,代码来源:mixin.py


注:本文中的models.Tag.post_count方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。