Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Heroku に tornado サーバーをデプロイしています。現在、標準的な方法でファイルからテンプレートをロードしています。ファイルからではなく、データベース フィールドからロードしたいと思います。
どうすればきれいな方法でそれを行うことができますか?
ありがとう!
Loaderの代わりにTemplateを使用してみてください。
次のように簡単になります。
from tornado.template import Template t = Template(my_template_string_from_database) r = t.generate(key=value) #as we do in loader
例はチェックしていませんが、このように考えてください。そして、トルネード コードを恐れないでください。読みやすいコードです。