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


Python Users.add_user_from_table方法代碼示例

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


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

示例1: users

# 需要導入模塊: from users import Users [as 別名]
# 或者: from users.Users import add_user_from_table [as 別名]
def users():
    dsn = app.config['dsn']
    page = Users(dsn)
    if session['admin']:
        if request.method == 'GET':
            return page.show_users()
        elif 'Add' in request.form:
            username = request.form['UserName']
            password = request.form['Password']
            type = request.form['UserType']
            if username and password and type:
                return page.add_user_from_table(username, password, type)
            else:
                flash("You need to enter all the fields")
                return page.show_users()
        elif 'Delete' in request.form:
            id = request.form.get('select', '')
            if id:
                return page.delete_user(id)
            else:
                flash("You need to select the user you want to delete using the radio buttons!")
                return page.show_users()
        elif 'Update' in request.form:
            id = request.form.get('select', '')
            username = request.form['UserName']
            password = request.form['Password']
            type = request.form['UserType']
            if username and password and type and id:
                return page.update_user(username, password, type, id)
            else:
                if not id:
                    flash("You need to select the user you want to update using the radio buttons!")
                if not username or not password or not type:
                    flash("You need to enter all the fields")
                return page.show_users()
        elif 'Reset' in request.form:
            return page.reset_table()

    else:
        flash("Only admins can access that page!")
        return redirect(url_for('home'))
開發者ID:itucsdb1525,項目名稱:itucsdb1525,代碼行數:43,代碼來源:server.py


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