私はトルネードには新しいです、そして、私は現在、この最近の苦境を乗り越えようとしています。現在、私はいくつかのデータベース変数を定義しており、Applicationクラスを初期化するときにハンドラ、設定、データベース接続情報をインスタンス化します。私はまた、他のクラスへのシンプルなデータベースインターフェイスを提供するベースハンドラクラス(BaseHandler)を持っています。クラスのいくつかを別のファイルに分割し、他のクラスのメソッドでデータベースロジックを大部分にし、ルートのapplication.pyを保持し、必要に応じてこれらの他のクラスをインスタンス化し、必要なデータをそれらはデータベース用です。これらの他のファイル/クラスからこのself.db関数にどのようにアクセスすればよいですか?Tornadoの他のクラス/ファイルのデータベースレベル関数にアクセスするにはどうすればよいですか?
application.py:
import tornado.database
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
from tornado.options import define, options
from user import User
# Define some startup settings, can be changed through the command line
define("port", default=8888, help="Run on the given HTTP port", type=int)
define("db_host", default="localhost:3306", help="Database host")
define("db_name", default="database_name", help="Database name")
define("db_user", default="user", help="Database username")
define("db_pass", default="password", help="Database password")
class Application(tornado.web.Application):
def __init__(self):
handlers = [
(r"/", MainHandler)
]
settings = dict(
application_title = u"Test Application",
template_path = os.path.join(os.path.dirname(__file__), "templates"),
static_path = os.path.join(os.path.dirname(__file__), "static"),
autoescape = None
)
tornado.web.Application.__init__(self, handlers, **settings)
self.db = tornado.database.Connection(
host=options.db_host, database=options.db_name,
user=options.db_user, password=options.db_pass)
class BaseHandler(tornado.web.RequestHandler):
@property
def db(self):
return self.application.db
class MainHandler(BaseHandler):
def get(self):
u = User()
self.write(tornado.escape.json_encode(u.get_user("[email protected])))
user.py:私は、別のファイルに出ロジックを分離していない場合は、この論理は、正常に動作しない
class User(object):
def get_user(self, email):
result = self.db.get("SELECT first_name, last_name FROM users WHERE email = %s", email)
if not result: return False
return True, result
私は明らかに何か間違っている/何かを見逃しています。
恐ろしい!正しい方向に押してくれてありがとう、私はそれを感謝します。 –
:)。今度は自分のコードにいくつか変更を加えました。私はdbをda.pyで定義し、 'GetKindById(self、id)'のようなデータアクセスメソッドを書きます。また、dbを使用したいときはいつでも、da.pyからインポートするか、 'GetKindById(self、id)'のようなメソッドを呼び出してデータにアクセスすることができるので、server.pyにself.dbを定義する必要はありません。 – goofansu
tornado.databaseはTornado 2.4の間に廃止され、Tornado 3.0から[torndb](https://github.com/bdarnell/torndb)に移動されましたが、これはもはや維持されず、 Python 3と互換性がありません – Marc