これは私のdatabase.pyFlaskどのようにsqlalchemyをinit_db()で宣言的に使用しますか?
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回。同じcreate table文が実行されます
- 私が '/'にアクセスすると、テーブルが作成されたことを100%確信していても、次のエラーが発生します。どうして?
cursor.execute(statement, parameters) OperationalError: (OperationalError) no such table: users u'INSERT INTO users DEFAULT VALUES'()
モデルコードも投稿できますか?あなたがここで何をしようとしているのかはっきりしない。一般に、データベース作成(init_db)は1回だけ呼び出す必要があります。私は少なくとも、backend.pyから取り出して、一度だけdatabase.pyを呼び出すことをお勧めします。 – codegeek