當前位置: 首頁>>代碼示例>>Python>>正文


Python Category.update方法代碼示例

本文整理匯總了Python中models.Category.update方法的典型用法代碼示例。如果您正苦於以下問題:Python Category.update方法的具體用法?Python Category.update怎麽用?Python Category.update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在models.Category的用法示例。


在下文中一共展示了Category.update方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: admin_edit_category

# 需要導入模塊: from models import Category [as 別名]
# 或者: from models.Category import update [as 別名]
def admin_edit_category(cat_id):

    form = CategoryForm()
    if request.method == 'POST' and form.validate_on_submit():
        cat_name = form.cat_name.data.strip()
        cat_description = form.cat_description.data.strip()
        Category.update(cat_id, cat_name, cat_description)
        categories = Category.query.all()
        return render_template('admin_categories.html', title='Admin', user=current_user, categories=categories)
    else:
        category = Category.query.filter_by(cat_id=cat_id).first()
        form.cat_name.data = category.cat_name
        form.cat_description.data = category.cat_description
        return render_template('admin_edit_category.html', title='Admin', form=form, user=current_user)
開發者ID:FengNongtheWindCoder,項目名稱:flaskblog,代碼行數:16,代碼來源:views.py

示例2: api_update_categroy

# 需要導入模塊: from models import Category [as 別名]
# 或者: from models.Category import update [as 別名]
def api_update_categroy(request, *, id, name, weight):
    check_admin(request)
    if not name or not name.strip():
        raise APIValueError("name", "錯誤:類別名不應為空,請填寫類別名。")
    if not weight:
        raise APIValueError("weight", "錯誤:類別權重區間為1~100,請設置正確的值。")
    if int(weight) < 1 or int(weight) > 100:
        raise APIValueError("weight", "錯誤:類別權重區間為1~100,請設置正確的值。")
    sameName = yield from Category.findNumber('count(id)', 'name="%s" and id!="%s"' % (name, id))
    if not 0 == sameName:
        raise APIValueError("name", "錯誤:已存在同名類別,請使用其他類別名。")
    category = Category(id=id, name=name, weight=weight)
    yield from category.update()
    return category
開發者ID:dramenk,項目名稱:awesome,代碼行數:16,代碼來源:handlers.py


注:本文中的models.Category.update方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。