@app.route(‘/‘) def hello_world(): return render_template(‘base.html‘) @app.route(‘/login‘) def login(): return render_template(‘login.html‘) @app.route(‘/regist‘) def regist(): return render_template(‘regist.html‘) @app.route(‘/fabu‘) def fabu(): return render_template(‘fabu.html‘) if __name__ == ‘__main__‘: app.run(debug=True)
SQLALCHEMY_DATABASE_URI = ‘mysql+pymysql://root:@localhost:3306/mis_db?charset=utf8‘ SQLALCHEMY_TRACK_MODIFICATIONS = False
连接mysql数据库,创建用户模型
标签:l数据库 bug debug pytho mode div 用户 orm end