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


Python Category.title方法代码示例

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


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

示例1: post

# 需要导入模块: from models import Category [as 别名]
# 或者: from models.Category import title [as 别名]
    def post(self):
        json = {}
        if not self.current_user:
            json = {
                'error': 1,
                'msg': self._('Access denied')
            }
            self.write(json)
            return

        title = self.get_argument('title', None)
        slug = self.get_argument('slug', None)
        description = self.get_argument('description', '')
        # valid arguments
        if not title:
            json = {
                'error': 1,
                'msg': self._('Title field can not be empty')
            }
            self.write(json)
            return
        if not slug:
            json = {
                'error': 1,
                'msg': self._('Slug field can not be empty')
            }
            self.write(json)
            return
        elif self.get_category_by_slug(slug):
            json = {
                'error': 1,
                'msg': self._('Slug already exists')
            }
            self.write(json)
            return
        # create category
        category = Category()
        category.title = title
        category.slug = slug
        category.description = description
        self.db.add(category)
        self.db.commit()
        # delete cache
        keys = ['CategoryList', 'SystemStatus']
        self.cache.delete_multi(keys)

        json = {
            'error': 0,
            'msg': self._('Successfully created'),
            'category': {
                'id': category.id,
                'title': category.title,
                'slug': category.slug,
                'description': category.description,
                'permalink': category.permalink,
                'post_count': category.post_count
            }
        }
        self.write(json)
开发者ID:messense,项目名称:YaBlog,代码行数:61,代码来源:api.py

示例2: convert_to_entity

# 需要导入模块: from models import Category [as 别名]
# 或者: from models.Category import title [as 别名]
def convert_to_entity(json):
    category_key = get_key(json['slug'])
    if category_key.get() != None:
        return None
    category = Category(key=category_key)
    category.title = json['title']
    category.id = json['id']
    category.time_added = datetime.utcnow()
    return category
开发者ID:aapteedea,项目名称:shiloh-ranch,代码行数:11,代码来源:categories.py


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