これは私のdatabase.pyです
engine = create_engine('sqlite:///:memory:', echo=True)
session = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine))
Base = declarative_base()
Base.query = session.query_property()
def init_db():
# import all modules here that might define models so that
# they will be registered properly on the metadata. Otherwise
# you will have to import them first before calling init_db()
import models
Base.metadata.create_all(engine)
これが私のbackend.pyです
from flask import Flask, session, g, request, render_template
from database import init_db, session
from models import *
app = Flask(__name__)
app.debug = True
app.config.from_object(__name__)
# Serve static file during debug
if app.config['DEBUG']:
from werkzeug import SharedDataMiddleware
import os
app.wsgi_app = SharedDataMiddleware(app.wsgi_app, {
'/': os.path.join(os.path.dirname(__file__), 'static')
})
@app.route('/')
def foo():
session.add(User())
session.commit()
return "NOTHING HERE."
if __name__ == "__main__":
init_db()
app.run(port=8888)
私はいくつかの奇妙なことに気づいています:
- 私がそうするとき、私
python backend.py
はテーブルが2回作成されているのを見ています。同じcreatetableステートメントが実行されます - '/'にアクセスすると、テーブルが作成されたと100%確信している場合でも、次のエラーが発生します。なんで?
cursor.execute(statement、parameters)OperationalError:(OperationalError)そのようなテーブルはありません:users u'INSERT INTO users DEFAULT VALUES'()