zoukankan      html  css  js  c++  java
  • 连接mysql数据库,创建用户模型

    1. 安装与配置python3.6+flask+mysql数据库
      1. 下载安装MySQL数据库
      2. 下载安装MySQL-python 中间件
      3. pip install flask-sqlalchemy (Python的ORM框架SQLAlchemy)
    2. mysql创建数据库
    3. 数据库配置信息config.py
    4. 建立mysql和app的连接
    5. 创建用户模型
    from flask import Flask,render_template
    from flask_sqlalchemy import SQLAlchemy
    import config
    
    app = Flask(__name__)
    app.config.from_object(config)
    db=SQLAlchemy(app)
    
    
    class User(db.Model):
        __tablename__='user'
        id = db.Column(db.Integer,primary_key=True,autoincrement=True)
        username=db.Column(db.String(20),nullable=False)
        password=db.Column(db.String(20),nullable=False)
    
    db.create_all()
    
    @app.route('/')
    def index():
        return render_template("index.html")
    
    @app.route('/login')
    def login():
        return render_template("login.html")
    
    @app.route('/regis')
    def register():
        return render_template("Zhuce.html")
    
    @app.route('/fankui')
    def fankui():
        return render_template("page_help.html")
    
    if __name__ == '__main__':
        app.run(debug=True)

    config:

    SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://root:@127.0.0.1:3306/mis_db?charset=utf8'
    SQLALCHEMY_TRACK_MODIFICATIONS = False
  • 相关阅读:
    UOJ168. 【UR #11】元旦老人与丛林
    luogu3308,LOJ 2196 [SDOI2014]LIS
    CF1349F2. Slime and Sequences (Hard Version)
    6210. wsm
    欧拉数学习小记
    CF1508F. Optimal Encoding
    CF1508C. Complete the MST
    联合省选2021 游记
    一. Docker介绍
    Elasticsearch
  • 原文地址:https://www.cnblogs.com/Naiky/p/7830985.html
Copyright © 2011-2022 走看看