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


Python Category.name方法代码示例

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


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

示例1: test_06_rename_category

# 需要导入模块: from app.models import Category [as 别名]
# 或者: from app.models.Category import name [as 别名]
    def test_06_rename_category(self):
        """测试分类改名"""
        cate1 = Category(name='cate1')
        db.session.add(cate1)
        db.session.commit()

        cate2 = Category(name='cate2')
        cate2.parent = cate1
        db.session.add(cate2)
        db.session.commit()

        cate3 = Category(name='cate3')
        cate3.parent = cate2
        db.session.add(cate3)
        db.session.commit()

        p = Post()
        Post.publish(post=p,
                     title='post',
                     content='post',
                     category=cate2)

        cate1.name = 'cate11'
        cate2.name = 'cate222'

        self.assertTrue(cate2 in cate1.children.all() and
                        cate2.link == 'cate11/cate222' and
                        cate3 in cate2.children.all() and
                        cate3.link == 'cate11/cate222/cate3' and
                        cate3.level == 2 and
                        cate3.parent == cate2 and
                        cate2.posts_count == 1 and
                        cate1.posts_count == 1 and
                        cate3.posts_count == 0)
开发者ID:imhuwq,项目名称:imhuwq,代码行数:36,代码来源:create_cate_tag.py

示例2: handle

# 需要导入模块: from app.models import Category [as 别名]
# 或者: from app.models.Category import name [as 别名]
 def handle(self, *args, **options):
     archivo = args[0]
     f = open(archivo, 'r')
     l = f.readlines()
     count = 0
     for c in l:
         c = c[1:]
         c = c[:-2]
         slug = c.replace(' ', '-')
         slug = slug.replace(',', '')
         slug = slug.decode('latin-1')
         slug = unicodedata.normalize('NFKD', slug).encode('ASCII', 'ignore') 
         slug = slug.lower()
         
         category = Category()
         category.name = c
         category.slug = slug
         category.order = 0
         category.active = True
         
         try:
             category.save()
             count += 1
             self.stdout.write('Categoria %s almacenada' %  c)
         except Exception:
             self.stdout.write('Categoria %s NO almacenada' %  c)
         
     self.stdout.write('Se almacenaron %d categorias' % count)
开发者ID:guillermocandia,项目名称:tienda,代码行数:30,代码来源:cargar_categorias.py


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