标签:mod http object 建立 charset column 分享 from 模型
SQLALCHEMY_DATABASE_URI = ‘mysql+pymysql://root:@127.0.0.1:3306/mytest?charset=utf8‘ SQLALCHEMY_TRACK_MODIFICATIONS = False
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()
标签:mod http object 建立 charset column 分享 from 模型
原文地址:http://www.cnblogs.com/yishhaoo/p/7834698.html