本文整理匯總了Python中models.Category.description方法的典型用法代碼示例。如果您正苦於以下問題:Python Category.description方法的具體用法?Python Category.description怎麽用?Python Category.description使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.Category
的用法示例。
在下文中一共展示了Category.description方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: new_category
# 需要導入模塊: from models import Category [as 別名]
# 或者: from models.Category import description [as 別名]
def new_category():
""" Add new category """
# Check if the user is loged in
if 'username' not in login_session:
return redirect('/login')
if request.method == 'POST':
# Get data from the front-end
name = request.form['name']
description = request.form['description']
# Put the data into a model
category = Category(name=name, user_id=login_session['user_id'])
# Save description if there are one
if description:
category.description = description
session.add(category)
session.commit()
return redirect(url_for('categories'))
return render_template('categories/new_category.html')
示例2: post
# 需要導入模塊: from models import Category [as 別名]
# 或者: from models.Category import description [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)
示例3: category
# 需要導入模塊: from models import Category [as 別名]
# 或者: from models.Category import description [as 別名]
def category():
loc = "nav-category"
if request.method == "POST" and request.form["action"] == "insert":
#insert new category
description = request.form["description"]
category_type = request.form["categorytype"]
success = False
category = Category(g.user.id, description, category_type)
if not category.isExists():
db.session.add(category)
db.session.commit()
success = (True if category.id != -1 else False)
return render_template("category.html", success = success, locid = loc)
elif request.method == "POST" and request.form["action"] == "add":
#show add category
return render_template("category.html", action = "add", locid = loc)
elif request.method == "POST" and request.form["action"] == "edit":
#show edit category
category_id = request.form["categoryid"]
return render_template("category.html", action = "edit", category = Category.query.filter_by(id=category_id).one(), locid = loc)
elif request.method == "POST" and request.form["action"] == "fin-edit":
#show finalise edit category
category_id = request.form["categoryid"]
description = request.form["description"]
category_type = request.form["categorytype"]
success = False
category = Category(g.user.id, description, category_type)
if not category.isExists():
category = Category.query.get(category_id)
category.description = description
category.category_type = category_type
db.session.commit()
success = True
return render_template("category.html", action = "edit-fin", success = success, locid = loc)
elif request.method == "POST" and request.form["action"] == "delete":
#delete category
category_id = request.form["categoryid"]
category = Category.query.get(category_id)
db.session.delete(category)
db.session.commit()
return render_template("category.html", action = "delete-fin", locid = loc)
else:
#show category list
rs = db.session.query(Category).filter_by(user_id=g.user.id)
return render_template("category.html", action = "show", category = rs, locid = loc)