本文实例讲述了Flask框架通过Flask_login实现用户登录功能。分享给大家供大家参考,具体如下:
通过Flask_Login实现用户验证登录,并通过login_required装饰器来判断用户登录状态来判断是否允许访问视图函数。
运行环境:
python3.5
Flask 0.12.2
Flask_Login 0.4.1
Flask-WTF 0.14.2
PyMySQL 0.8.0
WTForms 2.1
DBUtils 1.2
目录结构:
直接看代码,具体功能有注释
Model/User_model.py
#创建一个类,用来通过sql语句查询结果实例化对象用class User_mod(): def __init__(self): self.id=None self.username=None self.task_count=None self.sample_count=None def todict(self): return self.__dict__#下面这4个方法是flask_login需要的4个验证方式 def is_authenticated(self): return True def is_active(self): return True def is_anonymous(self): return False def get_id(self): return self.id # def __repr__(self): # return '<User %r>' % self.username
templates/login.html
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body> <div class="login-content"> <form class="margin-bottom-0" action="{{ action }}" method="{{ method }}" id="{{ formid }}"> {{ form.hidden_tag() }} <div class="form-group m-b-20"> {{ form.username(class='form-control input-lg',placeholder = "用户名") }} </div> <div class="form-group m-b-20"> {{ form.password(class='form-control input-lg',placeholder = "密码") }} </div> <div class="checkbox m-b-20"> <label> {{ form.remember_me() }} 记住我 </label> </div> <div class="login-buttons"> <button type="submit" class="btn btn-success btn-block btn-lg">登 录</button> </div> </form> </div></body></html>
User_dal/dal.py
import pymysqlfrom DBUtils.PooledDB import PooledDBPOOL = PooledDB( creator=pymysql, # 使用链接数据库的模块 maxconnections=6, # 连接池允许的最大连接数,0和None表示不限制连接数 mincached=2, # 初始化时,链接池中至少创建的空闲的链接,0表示不创建 maxcached=5, # 链接池中最多闲置的链接,0和None不限制 maxshared=3, # 链接池中最多共享的链接数量,0和None表示全部共享。PS: 无用,因为pymysql和MySQLdb等模块的 threadsafety都为1,所有值无论设置为多少,_maxcached永远为0,所以永远是所有链接都共享。 blocking=True, # 连接池中如果没有可用连接后,是否阻塞等待。True,等待;False,不等待然后报错 maxusage=None, # 一个链接最多被重复使用的次数,None表示无限制 setsession=[], # 开始会话前执行的命令列表。如:["set datestyle to ...", "set time zone ..."] ping=0, # ping MySQL服务端,检查是否服务可用。# 如:0 = None = never, 1 = default = whenever it is requested, 2 = when a cursor is created, 4 = when a query is executed, 7 = always host='192.168.20.195', port=3306, user='root', password='youpassword', database='mytest', charset='utf8')class SQLHelper(object): @staticmethod def fetch_one(sql,args): conn = POOL.connection() #通过连接池链接数据库 cursor = conn.cursor() #创建游标 cursor.execute(sql, args) #执行sql语句 result = cursor.fetchone() #取的sql查询结果 conn.close() #关闭链接 return result @staticmethod def fetch_all(self,sql,args): conn = POOL.connection() cursor = conn.cursor() cursor.execute(sql, args) result = cursor.fetchone() conn.close() return result
新闻热点
疑难解答