连接mysql数据库,创建用户模型
2017-11-14 22:13 019王泽 阅读(138) 评论(0) 收藏 举报- 安装与配置python3.6+flask+mysql数据库
- 下载安装MySQL数据库
- 下载安装MySQL-python 中间件
- pip install flask-sqlalchemy (Python的ORM框架SQLAlchemy)
- mysql创建数据库
- 数据库配置信息config.py
- 建立mysql和app的连接
- 创建用户模型
建立mysql和app的连接和用户模型
1 from flask import Flask,render_template,request
2 from flask_sqlalchemy import SQLAlchemy
3 import config
4
5 app = Flask(__name__)
6 app.config.from_object(config)
7 db = SQLAlchemy(app)
8
9 class User(db.Model):
10 __tablename__ = 'user'
11 id = db.Column(db.Integer,primary_key=True,autoincrement=True)
12 username = db.Column(db.String(20),nullable=False)
13 password = db.Column(db.String(20),nullable=False)
14
15
16 db.create_all()
17
18 @app.route('/')
19 def index():
20 return render_template('switch切换.html')
21
22 @app.route('/login/', methods = ['GET','POST'])
23 def login():
24 return render_template('login登录.html')
25
26 @app.route('/regist/', methods = ['GET','POST'])
27 def regist():
28 if request.method == 'GET':
29 return render_template('regist注册.html')
30 else:
31 pass
32
33
34
35 if __name__ == '__main__':
36 app.run(debug=True)
config.py
1 SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://root:@127.0.0.1:3306/mis_db?charset=utf8' 2 SQLALCHEMY_TRACK_MODIFICATIONS = False
mysql创建数据库mis_db


浙公网安备 33010602011771号